-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
88 lines (72 loc) · 1.04 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
* {
font-family: 'Lato', sans-serif;
}
body {
margin: 0;
}
.cost-header h1 {
font-size: 48px;
text-align: center;
padding-top: 200px;
}
.cost {
display: flex;
justify-content: center;
margin-bottom: 300px;
}
.cost-value {
background-color: #DCDCDC;
padding: 59px 202px;
text-align: center;
border-radius: 5px;
}
.cost-value h2 {
font-size: 72px;
margin: 0 0 25px;
}
.cost-value h3 {
font-size: 36px;
margin: 0;
}
.button-left {
padding-top: 112px;
margin-right: 50px;
}
.button-right {
padding-top: 112px;
margin-left: 50px;
}
.info {
display: flex;
flex-direction: row;
padding-bottom: 275px;
max-width: 1200px;
margin: 0 auto;
}
.info-left {
width: 478px;
text-align: center;
margin: 0 auto;
}
.info-left h2 {
font-size: 34px;
}
.info-left p {
font-size: 25px;
}
.info-right {
width: 478px;
text-align: center;
margin: 0 auto;
}
.info-right h2 {
font-size: 34px;
}
.info-right p {
font-size: 25px;
}
.footer {
text-align: center;
background-color: #DCDCDC;
padding: 10px 0;
}