-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
136 lines (126 loc) · 2.61 KB
/
Copy pathindex.css
File metadata and controls
136 lines (126 loc) · 2.61 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
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
/* Section 1 */
.container-1 {
display: flex;
justify-content: space-around;
align-items: center;
padding: 32px;
background-color: var(--b-l);
}
.p-fixed-size {
width: 300px;
}
.bold {
font-weight: 700;
}
.button-container {
display: inline-flex;
justify-content: center;
align-items: center;
}
.button-container p {
padding: 0 8px;
margin: 0;
}
/* Section 2 */
.container-2 {
display: flex;
flex-direction: column;
align-items: center;
padding: 16px 0;
background-color: var(--b-d);
}
.container-2 h1 {
color: var(--f-d-b);
text-align: center;
}
.carousel-item-box {
display: flex;
align-items: center;
}
.carousel-item-box img {
width: 384px;
height: 384px;
border-radius: 50%;
}
.carousel-item-content {
display: flex;
flex-direction: column;
padding-left: 32px;
justify-content: space-around;
}
.carousel-item-content h3 {
color: var(--f-a-e);
font-weight: 700;
}
.carousel-item-content p, .carousel-item-content ul{
color: var(--f-d-b);
}
.carousel-item-content a {
width: fit-content;
}
/* @media breakpoints */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
.container-1 {
flex-direction: column-reverse;
}
.container-1 div h1 {
text-wrap: wrap;
}
.section-1-image {
width: 300px;
}
.carousel-item-box {
flex-direction: column;
}
.carousel-item-box img {
width: 256px;
height: 256px;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.container-1 {
flex-direction: column-reverse;
}
.container-1 div h1 {
text-wrap: wrap;
}
.section-1-image {
width: 500px;
}
.carousel-item-box {
flex-direction: column;
}
.carousel-item-box img {
width: 256px;
height: 256px;
}
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.section-1-image {
width: 750px;
}
.container-1 div h1 {
text-wrap: nowrap;
}
.carousel-item-box img {
width: 384px;
height: 384px;
}
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
.carousel-item-box {
flex-direction: row;
}
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}
@media only screen and (min-width: 1660px) {
.container-1 {
flex-direction: row;
}
}