-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
55 lines (47 loc) · 818 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
/* Body and div containers */
body {
box-sizing: border-box;
line-height: 1.6;
color: white;
}
.box {
border: solid 1px white;
margin-top: 50px;
padding: 20px;
}
.counters {
display: flex;
justify-content: space-between;
}
/* ID's */
#number {
border-radius: 50%;
font-size: 2rem;
line-height: 60px;
margin: auto;
height: 60px;
width: 60px;
}
/* Buttons */
.btn-warning {
margin-top: 20px;
}
/* --------- Sections --------- */
/* Calculator */
#calculator {
background-color: #35654d;
text-align: center;
padding: 10px 0px 40px;
}
/* about */
#about {
border-top: solid 4px gold;
border-bottom: solid 4px gold;
padding: 50px 15px;
color: black;
}
/* FAQ's */
#FAQ {
background-color: #35654d;
padding: 30px 15px;
}