-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (50 loc) · 878 Bytes
/
style.css
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
html,
body {
height: 100%;
width: 75%;
min-width: 320px;
}
html {
font-family: -apple-system, BlinkMacSystemFont, 'Avenir Next', Avenir, 'Segoe UI', 'Helvetica Neue', Helvetica,
Ubuntu, Roboto, Noto, Arial, sans-serif;
font-size: calc(16px + 1.5 * 1vw);
}
body {
display: block;
margin: calc(16px + 2.5 * 1vw);
margin-top: calc(64px + 2.5 * 1vw);
color: snow;
}
p {
font-weight: bold;
line-height: 1.5rem;
margin-top: 0.75rem;
margin-bottom: 0.75rem;
color: black;
}
.ghost {
color: #D4D4D4;
}
.link {
color: hotpink;
transition: color 0.1s;
}
.link:hover {
color: #E7469A;
}
.link:active {
color: hotpink;
}
.action {
color: cornflowerblue;
transition: color 0.1s;
text-decoration: none;
}
.action:hover {
color: #3676E8;
text-decoration: none;
}
.action:active {
color: cornflowerblue;
text-decoration: none;
}