hasanah10105
commited on
Commit
·
2afec4e
1
Parent(s):
1906e72
add initial css file
Browse files
style.css
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
* {
|
2 |
+
box-sizing: border-box;
|
3 |
+
}
|
4 |
+
|
5 |
+
body {
|
6 |
+
font-family: 'Source Sans Pro', sans-serif;
|
7 |
+
font-size: 16px;
|
8 |
+
}
|
9 |
+
|
10 |
+
.container {
|
11 |
+
width: 100%;
|
12 |
+
margin: 0 auto;
|
13 |
+
}
|
14 |
+
|
15 |
+
.title {
|
16 |
+
font-size: 24px !important;
|
17 |
+
font-weight: 600 !important;
|
18 |
+
letter-spacing: 0em;
|
19 |
+
text-align: center;
|
20 |
+
color: #374159 !important;
|
21 |
+
}
|
22 |
+
|
23 |
+
.subtitle {
|
24 |
+
font-size: 24px !important;
|
25 |
+
font-style: italic;
|
26 |
+
font-weight: 400 !important;
|
27 |
+
letter-spacing: 0em;
|
28 |
+
text-align: center;
|
29 |
+
color: #1d652a !important;
|
30 |
+
padding-bottom: 0.5em;
|
31 |
+
}
|
32 |
+
|
33 |
+
.overview-heading {
|
34 |
+
font-size: 24px !important;
|
35 |
+
font-weight: 600 !important;
|
36 |
+
letter-spacing: 0em;
|
37 |
+
text-align: left;
|
38 |
+
}
|
39 |
+
|
40 |
+
.overview-content {
|
41 |
+
font-size: 14px !important;
|
42 |
+
font-weight: 400 !important;
|
43 |
+
line-height: 30px !important;
|
44 |
+
letter-spacing: 0em;
|
45 |
+
text-align: left;
|
46 |
+
}
|
47 |
+
|
48 |
+
.content-image {
|
49 |
+
width: 100% !important;
|
50 |
+
height: auto !important;
|
51 |
+
}
|
52 |
+
|
53 |
+
.vl {
|
54 |
+
border-left: 5px solid #1d652a;
|
55 |
+
padding-left: 20px;
|
56 |
+
color: #1d652a !important;
|
57 |
+
}
|
58 |
+
|
59 |
+
.grid-container {
|
60 |
+
display: grid;
|
61 |
+
grid-template-columns: 1fr 2fr;
|
62 |
+
gap: 20px;
|
63 |
+
align-items: flex-start;
|
64 |
+
margin-bottom: 0.7em;
|
65 |
+
}
|
66 |
+
|
67 |
+
.grid-container:nth-child(2) {
|
68 |
+
align-items: center;
|
69 |
+
}
|
70 |
+
|
71 |
+
@media screen and (max-width: 768px) {
|
72 |
+
.container {
|
73 |
+
width: 90%;
|
74 |
+
}
|
75 |
+
|
76 |
+
.grid-container {
|
77 |
+
display: block;
|
78 |
+
}
|
79 |
+
|
80 |
+
.overview-heading {
|
81 |
+
font-size: 18px !important;
|
82 |
+
}
|
83 |
+
}
|