-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabout.css
99 lines (83 loc) · 1.53 KB
/
about.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
.about__blue-header {
padding: 40px 25px 15px 25px;
background-color: #045BC0;
color: white;
box-shadow: inset 0 15px 12px -12px #c9daff;
}
.about__blue-header--text {
margin-bottom: 10px;
font-size: 17px;
font-weight: 300;
width: 90%;
}
.about__blue-header--link {
color: white;
align-self: end;
justify-self: end;
}
.about--headings {
background-color: #f1f8ff;
padding: 60px 8%;
}
.about__images {
display: flex;
justify-content: space-around;
padding: 20px 8%;
}
.about__image-titles {
color: #045BC0;
display: flex;
align-items: center;
}
.about__column {
margin: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 33%;
}
.about__column--img {
width: 80%;
max-width: 288px;
}
.about__column--text {
text-align: center;
margin: 5%;
justify-content: end;
font-size: clamp(1.25rem, 80%, 1.5rem);
}
.rounded-white-button {
height: 2.5rem;
background-color: white;
padding: 0px 20px;
color: #045BC0;
font-size: 14px;
font-weight: 600;
border: none;
border-radius: 999px;
cursor: pointer;
text-align: center;
}
/* Desktop styles */
@media (min-width: 600px) {
.about__blue-header--text {
margin: 0px;
width: 60%;
}
.about__blue-header {
padding: 70px 45px 25px 45px;
display: grid;
grid-template-columns: 70% 30%;
}
}
@media (max-width:800px) {
.about__images {
flex-direction: column;
justify-items: center;
align-items: center;
}
.about__column {
width: 100%;
}
}