-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
85 lines (71 loc) · 1.09 KB
/
index.css
File metadata and controls
85 lines (71 loc) · 1.09 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
#about {
display: flex;
flex-direction: column;
gap: 2rem;
margin-top: 2rem;
margin-left: 2rem;
margin-right: 2rem;
}
#about * {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
#about p {
margin: 0.5rem 0;
font-size: 1.5rem;
line-height: 2rem;
}
#about img {
height: auto;
max-height: 400px;
object-fit: cover;
}
#about_picture {
display: flex;
align-items: center;
margin-top: 0%;
}
#values {
padding-bottom: 4rem;
}
#boxes {
display: flex;
flex-wrap: wrap;
gap: 2rem;
justify-content: center;
}
#boxes img {
width: 40%;
}
#company_boxes {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
#company_boxes img {
width: 35%;
margin-top: 2%;
margin-left: 2.5%;
margin-right: 2.5%;
margin-bottom: 2%;
object-fit: contain;
}
h4 {
text-align: center;
font-size: 3rem;
margin-top: 2.5%;
}
@media only screen and (min-width: 1024px) {
#about {
flex-direction: row;
justify-content: space-evenly;
}
#about img {
max-height: none;
}
#boxes img {
width: 20%;
}
}