ehristoforu commited on
Commit
805d60b
·
1 Parent(s): 57dcdc6

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +48 -19
style.css CHANGED
@@ -1,28 +1,57 @@
1
- body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
 
 
 
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
 
 
 
 
 
 
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ }