-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
118 lines (100 loc) · 1.73 KB
/
index.css
File metadata and controls
118 lines (100 loc) · 1.73 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
.slideshow-container img {
vertical-align: middle;
height: 100vh;
}
.slideshow-container {
width: 100%;
position: relative;
margin: auto;
}
.slide {
display: none;
height: 100vh;
}
.slide img {
width: 100%;
}
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -22px;
color: var(--popcorn);
font-weight: bold;
font-size: 40px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
background-color: white;
}
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
color: var(--popcorn2);
}
.text {
color: var(--popcorn);
top: 220px;
text-align: center;
position: absolute;
width: 100%;
}
.text div {
width: 50%;
margin-left: auto;
margin-right: auto;
background-color: rgba(999,999, 999,0.9);
padding: 50px 0px;
font-size: 50px;
border-radius: 7px;
}
h2 {
text-align: center;
color: var(--popcorn);
font-size: 40px;
}
#why_us_exp {
text-align: center;
background-color: var(--lightgrey);
width: 70%;
margin: 0 auto;
padding: 50px 0;
padding-right: 15px;
padding-left: 15px;
}
#simple {
width: 90%;
text-align: center;
font-size: 20px;
margin: 0 auto;
}
#simple img {
width: 150px;
height: 150px;
border-radius: 50%;
}
#simple i {
font-size: 50px;
}
@media screen and (max-width: 1100px) {
.slideshow-container img {
vertical-align: middle;
height: 50vh;
}
.slide {
height: 50vh;
}
.prev, .next {
display: none;
}
.text {
top: 150px;
}
.text div {
width: 90%;
font-size: 40px;
}
}