-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
46 lines (39 loc) · 718 Bytes
/
main.css
File metadata and controls
46 lines (39 loc) · 718 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
html {
background-color: black;
font-family: "Roboto Mono", sans-serif;
color: white;
}
.wrapper {
padding-top: 30vm;
width: 330px;
margin: auto;
text-align: center;
border: 1px dashed #ccc;
}
.wrapper picture img {
border-radius: 50%;
width: 250px;
}
.wrapper ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.wrapper ul a {
text-decoration: none;
color: #fff;
background-color: red;
font-weight: bold;
display: block;
padding: 16px;
margin-bottom: 5px;
}
.wrapper a:hover {
text-decoration: underline;
}
.wrapper a.badge picture img {
vertical-align: center;
width: 88px;
height: 31px;
padding: 5px;
}