-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
115 lines (99 loc) · 1.95 KB
/
style.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
body {
background-color: #0c1014;
color: white;
width: 90%;
max-width: 960px;
margin: 0 auto;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.main-title {
font-size: 62px;
text-transform: uppercase;
text-align: center;
margin: 46px 0;
}
.header {
display: flex;
background-color: #05080a;
padding: 16px;
justify-content: space-between;
align-items: center;
}
.header__logo {
font-size: 36px;
text-transform: uppercase;
margin-left: 16px;
letter-spacing: 2px;
}
.header__nav ul {
display: flex;
list-style-type: none;
font-size: 18px;
gap: 16px;
}
.header__nav a {
color: white;
text-decoration: none;
padding: 14px;
border-radius: 6px;
}
.header__nav a:hover {
text-decoration: underline;
}
a.header__nav--active {
background-color: #cbe300;
color: #0c1014;
pointer-events: none;
}
.pricing {
display: flex;
gap: 16px;
}
.pricing-plan {
flex: 1;
background-color: #1f262c;
padding: 30px;
border-radius: 6px;
box-shadow: 0 5px 15px -6px black;
display: flex;
flex-direction: column;
}
.pricing-plan__title {
text-transform: uppercase;
border-bottom: 2px solid #cbe300;
margin-top: 0;
padding-bottom: 10px;
letter-spacing: 2px;
}
.pricing-plan p {
margin-top: 0;
}
.pricing-plan__price {
font-size: 34px;
}
.pricing-plan__features {
margin: 0 0 35px;
color: #b5b5b5;
padding-left: 16px;
line-height: 1.8;
flex-grow: 1;
}
.pricing-plan__features li::marker {
color: #cbe300;
}
.pricing-plan__cta {
text-decoration: none;
color: #0c1014;
background-color: #cbe300;
border-radius: 6px;
text-transform: uppercase;
font-size: 16px;
font-weight: bold;
padding: 16px 10px;
text-align: center;
}
.pricing-plan__cta:hover {
outline: 2px solid #cbe300;
background-color: transparent;
color: white;
}