-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
106 lines (86 loc) · 1.6 KB
/
styles.css
File metadata and controls
106 lines (86 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
html {
min-height: 100vh;
}
@media (prefers-color-scheme: light) {
html {
background: linear-gradient(#5d526b, #343434);
}
}
@media (prefers-color-scheme: dark) {
html {
background: linear-gradient(#5d526b, #000000);
}
}
body {
color: #FFFFFF;
font-family: "Ubuntu";
font-weight: 300;
}
h1 {
font-size: 25px;
line-height: 26px;
}
p {
font-size: 16px;
}
a {
color: #4c9eff;
text-decoration: none;
font-weight: 400;
}
a:hover {
color: #48bce0;
font-weight: 400;
}
ul {
list-style-type: none;
}
li::before {
content: "- ";
line-height: 1.3;
}
.small {
font-size: 12px;
}
.center {
text-align: center;
}
#main-container {
max-width: 650px;
padding: 0px 10px;
margin: 40px auto;
}
#top-container {
display: flex;
align-items: center;
}
#top-container p {
margin-left: 1em;
}
@media (max-width: 600px) {
#top-container {
flex-direction: column;
align-items: center;
}
#top-container p {
margin-left: 0;
}
#top-container img {
width: 150px;
}
}
p#time {
width: fit-content;
}
p#time:target {
animation: flash 1.5s ease-in-out forwards;
}
@keyframes flash {
0% { background-color: transparent; color: white; }
16% { background-color: #F4C542; color: black; }
33% { background-color: transparent; color: white; }
50% { background-color: #F4C542; color: black; }
66% { background-color: transparent; color: white; }
83% { background-color: #F4C542; color: black; }
100% { background-color: #F4C542; color: black; }
}