Spaces:
Sleeping
Sleeping
Commit
·
f148386
1
Parent(s):
b70428d
Rename static/CSS/home.css to static/CSS/style.css
Browse files
static/CSS/{home.css → style.css}
RENAMED
@@ -58,9 +58,10 @@ html {
|
|
58 |
text-align: center;
|
59 |
|
60 |
}
|
61 |
-
.container {
|
62 |
position: absolute;
|
63 |
left: 42%;
|
|
|
64 |
text-align: center;
|
65 |
color: rgb(139, 14, 14);
|
66 |
}
|
@@ -69,4 +70,20 @@ html {
|
|
69 |
top: 48%;
|
70 |
left: 46%;
|
71 |
transform: translate(-50%, -50%);
|
72 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
text-align: center;
|
59 |
|
60 |
}
|
61 |
+
.container {
|
62 |
position: absolute;
|
63 |
left: 42%;
|
64 |
+
bottom: 45%;
|
65 |
text-align: center;
|
66 |
color: rgb(139, 14, 14);
|
67 |
}
|
|
|
70 |
top: 48%;
|
71 |
left: 46%;
|
72 |
transform: translate(-50%, -50%);
|
73 |
+
}
|
74 |
+
|
75 |
+
@keyframes blink {
|
76 |
+
0% {
|
77 |
+
opacity: 1;
|
78 |
+
}
|
79 |
+
50% {
|
80 |
+
opacity: 0;
|
81 |
+
}
|
82 |
+
100% {
|
83 |
+
opacity: 1;
|
84 |
+
}
|
85 |
+
}
|
86 |
+
img {
|
87 |
+
animation: blink 2s;
|
88 |
+
animation-iteration-count: infinite;
|
89 |
+
}
|