-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjairo.css
More file actions
79 lines (67 loc) · 1.14 KB
/
jairo.css
File metadata and controls
79 lines (67 loc) · 1.14 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
#title_center {
text-align: center
}
.officer-grid{
overflow:auto;
padding: 10px;
height: 90vh;
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-evenly;
flex-wrap: wrap;
}
.officer-grid div {
background-color: white;
box-sizing: border-box;
text-align: center;
width: 40%;
height: 35%;
padding: 2%;
}
.officer-grid div h2 {
font-size: 48px;
}
.officer-grid div h3 {
font-size: 24px;
}
@media (max-width: 992px) {
.officer-grid div {
box-sizing: border-box;
text-align: center;
width: 40%;
height: 40%;
padding: 2%;
}
.officer-grid div h2 {
font-size: 32px;
}
.officer-grid div h3 {
font-size: 18px;
}
}
@media (max-width: 680px) {
.officer-grid{
overflow:auto;
padding: 5px;
height: 100vh;
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
}
.officer-grid div {
box-sizing: border-box;
text-align: center;
width: 45%;
height: 40%;
padding: 2%;
}
.officer-grid div h2 {
font-size: 32px;
}
.officer-grid div h3 {
font-size: 18px;
}
}