Skip to content

Commit bef7d1a

Browse files
Update skeleton-auto.css
1 parent 22ba1d6 commit bef7d1a

File tree

1 file changed

+0
-63
lines changed

1 file changed

+0
-63
lines changed

skeleton-auto.css

Lines changed: 0 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
*/
1717

1818

19-
@import url('https://fonts.bunny.net/css?family=Karla:400,700&display=swap');
20-
21-
2219
/* Grid
2320
–––––––––––––––––––––––––––––––––––––––––––––––––– */
2421
.container {
@@ -61,66 +58,6 @@
6158
html is set to 62.5% so that all the REM measurements throughout Skeleton
6259
are based on 10px sizing. So basically 1.5rem = 15px :) */
6360

64-
html {
65-
font-size: 100%; }
66-
67-
:root {
68-
--bgColor: #223344;
69-
--bgColor2: #090a0f;
70-
--accentColor: #FFF;
71-
--font: 'Karla', sans-serif;
72-
--delay: .3s; }
73-
74-
/* Background
75-
–––––––––––––––––––––––––––––––––––––––––––––––––– */
76-
77-
body {
78-
margin: 0;
79-
padding: 0;
80-
min-height: 100vh;
81-
font-family: var(--font);
82-
background: radial-gradient(ellipse at bottom, var(--bgColor) 0%, var(--bgColor2) 100%);
83-
background-image: url('https://raw.githubusercontent.com/JulianPrieber/Dawn/main/background.jpg');
84-
opacity: 0;
85-
animation: 1s ease-out var(--delay) 1 transitionAnimation; /* duration/timing-function/delay/iterations/name */
86-
animation-fill-mode: forwards;
87-
background-repeat: no-repeat;
88-
background-size: cover;
89-
position: relative;
90-
color: #FFFFFF;
91-
}
92-
93-
94-
/* Animation */
95-
@keyframes transitionAnimation {
96-
0% {
97-
opacity: 0;
98-
transform: translateY(-10px);
99-
}
100-
100% {
101-
opacity: 1;
102-
transform: translateY(0);
103-
}
104-
}
105-
106-
@keyframes animate {
107-
0% {
108-
background-position: -500%;
109-
}
110-
100% {
111-
background-position: 500%;
112-
}
113-
}
114-
115-
@keyframes animStar {
116-
from {
117-
transform: translateY(0px);
118-
}
119-
to {
120-
transform: translateY(-2000px);
121-
}
122-
}
123-
12461
/* Typography
12562
–––––––––––––––––––––––––––––––––––––––––––––––––– */
12663
h1 {

0 commit comments

Comments
 (0)