ehristoforu commited on
Commit
c6d3c20
·
1 Parent(s): e644f90

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +0 -57
style.css CHANGED
@@ -1,57 +0,0 @@
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:100px; }
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
- }