-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsive.css
69 lines (57 loc) · 1.07 KB
/
responsive.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
@media only screen and (max-width: 768px) {
header .navbar-brand {
padding-left: 1rem;
}
.section-1 .row .col-md-6 .panel {
position: initial;
width: initial;
height: initial;
}
.section-2 .cover {
background-position: -25vmin -10vmin;
}
.numbers .rect {
width: 10rem;
height: 8rem;
}
.numbers .rect h1 {
font-size: 2rem;
}
.section-3 {
height: inherit;
padding: 10vmin !important;
}
.section-3 .row h1 {
padding: 6vmin 4vmin;
}
.section-3 .row .col-md-6 {
text-align: center !important;
}
.section-3 .desktop i {
font-size: 8vmin;
}
.section-4 .carousel-item {
padding-left: 0.6rem;
}
.section-4 .team {
display: flex;
flex-direction: column;
align-content: center;
}
.section-4 .carousel-inner {
width: 24rem;
}
}
@media only screen and (max-width: 425px) {
.footer .row .col-md-2 {
margin-top: 8vmin;
}
}
@media only screen and (max-width: 320px) {
.section-4 .card {
width: 18rem;
}
.section-4 .carousel-inner {
margin-left: -15vmin;
}
}