-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
57 lines (48 loc) · 760 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
body {
background-color: black;
font-family: verdana;
}
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
a {
background-color: white;
width: 160vw;
color: black;
border-radius: 20px;
}
.profile-name {
text-align: center;
color: white;
padding: 5px;
font-size: 28px;
}
.container {
background-color: white;
width: 80vw;
color: black;
border-radius: 20px;
}
.container h1 {
font-size: 300%;
margin-bottom: 0;
}
.container h2 {
font-size: 250%;
margin-bottom: 0;
}
.container p {
font-size: 200%;
margin-bottom: 0;
}
.container h1,
.container h2,
.container p {
padding-left: 5%;
padding-right: 5%;
}