-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
50 lines (43 loc) · 788 Bytes
/
styles.css
File metadata and controls
50 lines (43 loc) · 788 Bytes
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
body {
background-color: black;
display: flex;
height: 100vh;
margin: 0;
align-items: center;
justify-content: center;
flex-direction: column;
color: white;
font-family: monospace;
}
a {
color: white;
font-weight: bolder;
}
.about {
text-align: center;
font-size: large;
}
.about p {
max-width: 720px;
padding: 10px;
}
.button {
margin: 1rem;
text-align: center;
border: 1px solid white;
font-size: 1.75rem;
}
.button a {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
color: white;
text-decoration: none;
border: 0.5rem solid transparent;
font-weight: normal;
}
.button a:hover, .button:hover {
background-color: white;
color: black;
}