-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
67 lines (57 loc) · 889 Bytes
/
styles.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
:root {
--bg: #446ccf;
--text-color: #ffffff;
}
html {
font-family: monospace;
font-size: 14px;
}
body {
display: flex;
align-items: center;
justify-content: center;
background: var(--bg);
color: var(--text-color);
margin: 0;
height: 100vh;
width: 100%;
}
main {
display: flex;
flex-direction: column;
gap: 16px;
}
a {
color: var(--text-color);
}
section {
display: flex;
flex-direction: column;
gap: 4px;
}
.intro {
font-size: 3rem;
font-weight: 700;
}
.infos {
display: flex;
flex-direction: column;
}
.btns {
display: flex;
gap: 8px;
}
.btns a {
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 6px;
color: var(--text-color);
padding: 6px;
text-align: center;
text-decoration: none;
transition: all 120ms ease;
min-width: 2em;
}
.btns a:hover {
background: var(--text-color);
color: var(--bg);
}