-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
202 lines (170 loc) · 4.49 KB
/
style.css
File metadata and controls
202 lines (170 loc) · 4.49 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
@import url("https://fonts.googleapis.com/css?family=Lato:400,400i,700");
* {
box-sizing: border-box;
}
html,
body {
padding: 0px;
margin: 0px;
}
body {
font-family: Lato, sans-serif;
background-size: cover;
background-position: center;
background-attachment: fixed;
}
.wc-table-wrapper {
display: flex;
flex-direction: column;
padding: 2.5% 5%;
overflow: hidden;
position: relative;
}
.wc-table-wrapper sup {
margin-right: -0.45vw;
}
.wc-table-wrapper:after {
content: "";
position: absolute;
width: 125%;
height: 150%;
background-image: linear-gradient(60deg, rgba(39, 45, 171, 0.665) 20%, #f64b70);
border-radius: 0% 5000px 5000px 0%;
top: 50%;
z-index: 1;
transform: translate(-15%, -40%) rotate(-45deg);
}
.wc-table-wrapper .table-section {
display: flex;
justify-content: space-around;
z-index: 2;
}
.wc-table-wrapper .table-section>div {
width: 48%;
}
.wc-table-wrapper .table-section>div .table-title {
color: #1821bc;
font-weight: bold;
background-color: #ffffff;
border-radius: 500px;
margin-bottom: 15px;
box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
display: flex;
justify-content: space-between;
align-items: center;
width: 105%;
padding: 15px 25px;
font-size: 2.5vw;
}
.wc-table-wrapper .table-section>div .table-title img {
width: 60px;
vertical-align: middle;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
.wc-table-wrapper .table-section>div:first-child .table-title {
margin-left: -30px;
text-align: right;
}
.wc-table-wrapper .table-section>div:last-child .table-title {
margin-left: 0px;
}
.wc-table-wrapper .table-section>div .wc-table {
width: 100%;
background-color: #ffffff;
border-collapse: collapse;
border-radius: 10px;
overflow: hidden;
}
.wc-table-wrapper .table-section>div .wc-table tr.head {
background-image: linear-gradient(80deg, #ff1e50 20%, #232882);
}
.wc-table-wrapper .table-section>div .wc-table tr.head th,
.wc-table-wrapper .table-section>div .wc-table tr.head td {
color: #ffffff;
font-weight: bold;
font-size: 2.5vw;
padding: 10px 15px;
text-align: center;
background-color: transparent !important;
}
.wc-table-wrapper .table-section>div .wc-table tbody td {
color: #121bc1;
font-weight: bold;
font-size: 1.6vw;
padding: 10px 15px;
overflow: hidden;
background-color: #ffffff;
}
.wc-table-wrapper .table-section>div .wc-table tbody td:first-child {
box-shadow: inset 0px 20px 35px -15px rgba(35, 40, 130, 0.15);
}
.wc-table-wrapper .table-section>div .wc-table tbody td:last-child {
font-weight: normal;
}
.wc-table-wrapper .table-section>div .wc-table tbody td:not(:first-child) {
min-width: 70px;
max-width: 90px;
box-shadow: inset 20px 20px 35px -15px rgba(35, 40, 130, 0.15);
border-left: 2px solid #ff1e50;
text-align: center;
}
.wc-table-wrapper .table-section>div .wc-table tbody tr.head td {
font-size: 2vw;
}
.wc-table-wrapper .footer-section {
z-index: 2;
}
.wc-table-wrapper .footer-section .wc-table-footer {
color: #232882;
font-weight: bold;
background-color: #ffffff;
border-radius: 500px;
margin-bottom: 15px;
box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
width: 102% !important;
font-size: 2vw;
text-align: center;
padding: 20px 25px;
margin-top: 12px;
margin-left: -15px;
position: relative;
}
@media (max-width: 767px) {
.wc-table-wrapper .table-section {
flex-wrap: wrap;
}
.wc-table-wrapper .table-section>div {
width: 96%;
}
.wc-table-wrapper .table-section>div .table-title {
font-size: 5.5vw;
}
.wc-table-wrapper .table-section>div:first-child .table-title {
margin-left: -15px;
}
.wc-table-wrapper .table-section>div:last-child .table-title {
margin-left: -15px;
margin-top: 15px;
}
.wc-table-wrapper .table-section>div .wc-table tr.head th,
.wc-table-wrapper .table-section>div .wc-table tr.head td {
font-size: 5.5vw;
}
.wc-table-wrapper .table-section>div .wc-table tbody td {
font-size: 3.2vw;
}
.wc-table-wrapper .table-section>div .wc-table tbody tr.head td {
font-size: 4vw;
}
.wc-table-wrapper .footer-section .wc-table-footer {
margin-left: -7.5px;
font-size: 4vw;
}
.wc-table-wrapper:after {
width: 95%;
height: 120%;
border-radius: 500px 500px 0% 0%;
top: 50%;
transform: translate(-5%, -50%) rotate(15deg);
}
}