Commit
·
805d60b
1
Parent(s):
57dcdc6
Update style.css
Browse files
style.css
CHANGED
@@ -1,28 +1,57 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
4 |
}
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
margin-top: 0;
|
9 |
}
|
10 |
|
11 |
-
|
12 |
-
|
13 |
-
font-size: 15px;
|
14 |
-
margin-bottom: 10px;
|
15 |
-
margin-top: 5px;
|
16 |
}
|
17 |
|
18 |
-
.
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
}
|
25 |
|
26 |
-
.
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{ box-sizing: border-box; }
|
2 |
+
body { font-family: sans-serif; margin:0; }
|
3 |
+
|
4 |
+
.header { background-color:#7289DA; /Discord blue/ color:white;
|
5 |
+
padding:20px; }
|
6 |
+
|
7 |
+
.main{ margin-top:50px; text-align:center;
|
8 |
+
|
9 |
}
|
10 |
|
11 |
+
.footer{ background-color:#F2F3F5 ; padding-bottom:10px;
|
12 |
+
|
|
|
13 |
}
|
14 |
|
15 |
+
.features-list li{ list-style:none;
|
16 |
+
|
|
|
|
|
|
|
17 |
}
|
18 |
|
19 |
+
.button{ display:inline-block; color:white font-size:.9em
|
20 |
+
|
21 |
+
background-color:#7289DA ;/Discord Blue/
|
22 |
+
|
23 |
+
padding:.7rem .85rem;
|
24 |
+
|
25 |
+
border-radius:.25rem;
|
26 |
+
|
27 |
+
margin-left:auto ; margin-right:auto ;
|
28 |
+
|
29 |
+
text-decoration:none;
|
30 |
+
|
31 |
}
|
32 |
|
33 |
+
.footer-button{
|
34 |
+
|
35 |
+
display:inline-block;/puts them in a row/ color:black;/black is better than white because the contrast it too much/
|
36 |
+
|
37 |
+
font-size:.8em;
|
38 |
+
|
39 |
+
background-color:white;/white so that the buttons don't look like they belong to main body/
|
40 |
+
|
41 |
+
border-radius:.25rem;
|
42 |
+
|
43 |
+
padding-top:.4 rem;/so there is enough space above and below the button text/
|
44 |
+
|
45 |
+
padding-bottom:.4 rem;
|
46 |
+
|
47 |
+
text-decoration:none;
|
48 |
+
|
49 |
}
|
50 |
+
|
51 |
+
.button-container{
|
52 |
+
|
53 |
+
display:flex; /aligns all three links in one row/
|
54 |
+
|
55 |
+
justify-content:center ;/centers those three links/
|
56 |
+
|
57 |
+
}
|