This repository has been archived by the owner on Apr 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsection.css
126 lines (107 loc) · 1.93 KB
/
section.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
.section {
min-width: 900px;
width: 80%;
margin: 80px auto;
}
.s-container {
width: 100%;
display: flex;
justify-content: center;
/* border: 1px solid black; */
}
.s-g-container {
width: 45%;
height: auto;
display: flex;
align-items: center;
justify-content: center;
/* border: 1px solid black; */
}
.s-g-container img {
width: 90%;
height: auto;
/* border: 1px solid black; */
}
.s-c-container {
width: 55%;
/* border: 1px solid black; */
}
.s-header {
font-family: "IBM Plex Serif", sans-serif;
font-weight: 600;
margin: 20px 0;
}
.s-content div {
font-size: 1.2rem;
margin: 30px 0;
text-align: justify;
}
/* Section Specific Styles */
.section.comparison .vs {
width: 8%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 3rem;
font-family: "IBM Plex Serif";
}
.section.footer {
margin-bottom: 0;
width: 100%;
padding: 50px;
background: black;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.section.footer div {
color: #eee;
font-family: "IBM Plex Serif";
font-size: 0.9rem;
}
/* Responsiveness */
@media (max-width: 950px) {
.section {
min-width: 0px;
width: 100vw;
padding: 60px 40px;
}
.s-container {
flex-direction: column;
}
.s-content {
width: 100% !important;
}
.s-c-container, .s-g-container {
width: 100% !important;
}
.s-g-container {
margin-bottom: 60px;
}
.s-g-container img {
max-width: 400px;
}
.s-header {
width: 100%;
text-align: center;
}
.team-member {
min-width: 0;
width: 100%;
flex-direction: column;
}
.team-member .image, .team-member .meta {
width: 100%;
}
.section.comparison .s-container,
.section.solution .s-container {
flex-direction: column-reverse;
}
.section.comparison .vs {
display: block;
width: 100%;
text-align: center;
}
}