-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (71 loc) · 1.35 KB
/
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
html,
body {
padding: 0;
margin: 0;
}
.content-wrapper {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: #ffffff;
}
h1 {
font-family: 'Space Mono', monospace;
letter-spacing: 0.025em;
text-transform: uppercase;
font-size: 0.875rem;
line-height: 1.25rem;
}
p {
font-size: 2.25rem;
line-height: 2.5rem;
font-family: 'Exo 2', sans-serif;
margin: 0;
}
a {
display: inline-block;
text-decoration: inherit;
border: 1px solid white;
color: white;
border-radius: 0.5rem;
font-family: 'Space Mono', monospace;
text-transform: uppercase;
padding: 0.5rem 1rem;
margin-top: 2rem;
font-size: 0.875rem;
line-height: 1.25rem;
}
.content-wrapper a:hover {
--tw-text-opacity: 1;
color: rgba(31, 41, 55, var(--tw-text-opacity));
background-color: white;
}
@media only screen and (max-width: 600px) {
h1 {
font-size: 0.8rem;
line-height: 0.95rem;
}
p {
width: 100%;
font-size: 1.1rem;
line-height: 1.1rem;
}
}
#github {
display: flex;
justify-content: center;
align-items: center;
}
#github a {
display: flex;
align-items: center;
font-size: large;
}
#github svg {
margin-right: 0.5rem;
}
#github a:hover svg path {
fill: #161b22;
}