-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
118 lines (118 loc) · 3.36 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
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
.marketcap-table a, .marketcap-table a:hover {
color: #212529;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
background-color: #2080ae;
color: white;
position: sticky;
top: 0;
z-index: 1000;
}
.navbar a {
color: white;
text-decoration: none;
margin: 0 15px;
}
.navbar a:hover {
text-decoration: underline;
}
.navbar .nav-links {
display: flex;
}
body {
background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(240,240,240,1) 100%) no-repeat top;
background-size: 100% 500px;
font-family: "Proxima Nova",-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen-Sans,Ubuntu,Cantarell,'Helvetica Neue',sans-serif;
margin: 0;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
}
header {
background-color: #2080ae;
color: white;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 28px;
}
.hero {
text-align: center;
padding: 40px 20px;
background-color: #e6f2ff;
}
.hero h2 {
font-size: 24px;
margin-bottom: 10px;
}
.hero p {
font-size: 18px;
margin-bottom: 20px;
}
.hero .btn {
background-color: #2080ae;
color: white;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
}
.pricing-section {
padding: 40px 20px;
}
.pricing-section h2 {
text-align: center;
margin-bottom: 20px;
font-size: 26px;
}
.pricing-table {
width: 100%;
border-collapse: collapse;
margin: 0 auto;
max-width: 1200px;
background-color: white;
}
.pricing-table thead th {
background-color: #2080ae;
color: white;
padding: 10px;
text-align: center;
}
.pricing-table tbody td {
padding: 10px;
text-align: center;
border: 1px solid #ddd;
}
.pricing-table tbody tr:nth-child(even) {
background-color: #f9f9f9;
}
.pricing-table .cta-row td {
padding: 20px;
}
.pricing-table .cta-button {
display: inline-block;
background-color: #2080ae;
color: white;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
font-weight: bold;
}
footer {
text-align: center;
padding: 20px;
background-color: #2080ae;
color: white;
margin-top: 40px;
}
footer a {
color: white;
text-decoration: underline;
}