-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpricing.css
131 lines (106 loc) · 2.02 KB
/
pricing.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/** pricing.css */
@import url("https://fonts.googleapis.com/css?family=Alegreya:900|Open+Sans|Slabo+27px&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
h1 {
color: #025157;
font-family: "Alegreya", serif;
font-size: 60px;
margin-bottom: 24px;
}
.header p {
color: #46484c;
max-width: 680px;
margin: 0 auto;
margin-bottom: 72px;
}
main {
margin-top: 285px;
text-align: center;
}
body {
background-color: #fffbf7;
font-family: "Open Sans", sans-serif;
}
.logo {
width: 15%;
}
.logo>img {
width: 15%;
}
.navbar {
background-color: #fffbf7;
text-align: center;
}
.navbar-light .nav-item .nav-link {
color: #025157;
}
.navbar-light .navbar-toggler {
border-color: #025157;
}
.navbar-light .navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(3, 81, 77)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.actions {
text-align: right;
font-weight: 600;
font-size: 14px;
}
.actions>* {
margin-right: 10px;
margin-left: 10px;
}
.actions a {
color: #67b54b;
}
.actions button {
color: white;
background-color: #67b54b;
padding-left: 14px;
padding-right: 14px;
padding-top: 12px;
padding-bottom: 12px;
border: 0;
border-radius: 5px;
}
.faq {
margin-top: 50px;
padding-bottom: 120px;
}
.faq h2 {
color: #025157;
font-family: "Alegreya", serif;
}
.faq .card-header {
background-color: white;
border-left: 1px solid rgba(0, 0, 0, 0.125);
}
.faq h2 > button {
color: #025157;
font-size: 28px;
font-weight: 900;
}
.faq .card .card-body a {
color: #6abf4b;
}
@media (max-width: 575px) {
.container {
display: flex;
}
.container .row {
flex-direction: column;
}
main {
margin-top: 130px;
padding: 5%;
}
h1 {
font-size: 30px;
}
.logo {
width: 40%;
}
}