-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
151 lines (126 loc) · 1.9 KB
/
index.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
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
h1
{
font-size : 1.5em;
}
h2
{
font-size : 1.25em;
text-transform : uppercase;
color : #393185;
margin-bottom : 1.5em;
}
h2::after
{
content : '';
display : block;
margin : auto;
width : 100px;
height : 3px;
background : #00A0E3;
margin-top : .5em;
}
/* SECTION */
.section
{
text-align : center;
}
.img
{
width : 100%;
height : 100%;
object-fit : contain;
}
.section img
{
max-width : 100%;
height : auto;
}
.section:not(.hero-section)
{
padding : 1.5em 1em 2.5em 1em;
}
.container
{
max-width : var(--maxWidth);
margin : auto;
}
.grid
{
display : grid;
grid-template-columns : repeat(auto-fit, minmax(15em, 1fr));
grid-gap : 2em;
}
.grid img
{
height : 6em;
object-fit : contain;
margin-bottom : .75em;
}
.circot-img
{
width : 15em;
height : auto;
}
/* COMPARISON */
table
{
margin : auto;
text-align : initial;
border-collapse : collapse;
border-spacing : 0;
font-size : .8em;
text-align : center;
}
table td,
table th
{
border : 1px solid #CCC;
padding : .5em;
}
thead th
{
width : 25%;
}
#main-section
{
display : grid;
grid-template-columns : repeat(auto-fit, minmax(320px, 1fr));
grid-gap : 2em;
place-items : center;
}
.hero-section
{
display : flex;
justify-content : center;
background : linear-gradient(to right,#005A99 50%, #006CAD 51%);
}
/* CERTIFICATES */
.certificates
{
display : inline-flex;
align-items : center;
justify-content : center;
flex-wrap : wrap;
}
.certificates img
{
max-height : 150px;
margin : .5em;
}
.certificates img:nth-child(2)
{
page-break-after : always;
}
/* TECHNOLOGY SECTION */
.technology-section img + img
{
margin-left : 1em;
}
.testing-section .img
{
max-height : 200px;
}
.technology-section .microscope-img
{
max-height : unset;
}