-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHomePage.css
More file actions
128 lines (125 loc) · 2.58 KB
/
HomePage.css
File metadata and controls
128 lines (125 loc) · 2.58 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
/* */
.bcgimage{
position: relative;
top: 100px;
background-image: url("./Assets/Backgorund.png");
background-repeat: no-repeat;
background-size: cover;
height: 52.5vw;
display: flex;
justify-content: center;
align-items: flex-end;
padding-bottom: 5%;
}
.content-top{
background-color: #ff9933;
border-radius: 8px;
width: 20%;
padding: 1vw 1vw 1vw 1vw;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.content-top a{
text-decoration: none;
font-size: 20px;
font-weight: bold;
color: white;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.content-bottom h2{
font-weight: bold;
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin-top: 150px;
text-align: center;
margin-bottom: 50px;
}
.content-events{
box-sizing: border-box;
}
.content-events .content-slider{
/* max-width: 800px; */
position: relative;
max-width: max-content;
margin: auto;
}
.content-events .content-slider .slide{
display: none;
}
.content-events .content-slider .slide img{
width: 100%;
}
.content-events .content-slider .prev, .next{
cursor: pointer;
position: absolute;
user-select: none;
top: 50%;
}
.content-events .content-slider .prev img, .next img{
width: 50px;
height: 50px;
}
.content-events .content-slider .next{
right: 0;
}
.content-events .content-slider .prev:hover, .next:hover{
background-color: #023788;
}
.content-events .dots{
text-align: center;
}
.content-events .dot{
height: 15px;
width: 15px;
cursor: pointer;
margin-top: 15px;
border-radius: 50%;
display: inline-block;
background-color: rgb(182, 181, 181);
}
.content-events .select, .dot:hover{
background-color: #ff9900;
}
@media only screen and (max-width: 800px){
.bcgimage{
top: 80px;
}
.content-top{
width: 35%;
height: 40px;
}
.content-top a{
font-size: 18px;
}
.content-bottom{
top: 80px;
}
}
@media only screen and (max-width: 500px){
.bcgimage{
top: 60px;
background-repeat: no-repeat;
background-size: cover;
height: 100vw;
background-position: 50% 0;
}
.content-top{
height: 25px;
width: 40%;
}
.content-top a{
font-size: 14px;
}
.content-bottom{
top: 60px;
}
.content-events .content-slider .prev img, .next img{
width: 30px;
height: 30px;
}
.content-events .dot{
height: 10px;
width: 10px;
}
}