-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
212 lines (179 loc) · 4.17 KB
/
home.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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
html {
height: 100%;
overflow-y: scroll;
scroll-behavior: smooth;
}
body {
/* margin: 10%; */
overflow: hidden;
cursor: url(./images/cursor1.png), default;
background-image: url(./images/home/home_bg.png);
padding-bottom: 0%;
margin: 0 auto;
}
/* ------------------------- scroll bar --------------------- */
body::-webkit-scrollbar {
background-color: rgba(247, 96, 114, 1);
width: 10px;
}
body::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(247, 96, 114, 1);
}
body::-webkit-scrollbar-thumb {
background-color: rgba(252, 190, 203, 1);
}
/* ------------------------------ Header Bar----------------------------------- */
.logo{
width: 100px;
cursor: pointer;
animation: float 6s ease-in-out infinite;
box-sizing: border-box;
border: 2px white solid;
border-radius: 50%;
}
.logo:hover{
cursor: url(./images/cursor2.png), default;
}
@keyframes float {
0% {
box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
transform: translatey(0px);
}
50% {
box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
transform: translatey(-20px);
}
100% {
box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
transform: translatey(0px);
}
}
li, a, button{
font-family: 'Montserrat', sans-serif;
font-size: 16px;
font-weight: 500;
color: #fff;
text-decoration: none;
/* text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease-in-out; */
}
header{
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 10%;
}
.nav-links{
list-style: none;
}
.nav-links li{
display: inline-block;
padding: 0 25px;
}
.nav_links li, a{
transition: all 0.3s ease 0s;
}
.nav_links li, a:hover{
color:rgba(247, 96, 114, 1);
cursor: url(./images/cursor2.png), default;
}
button{
background-color: rgba(252, 190, 203, 1);
border: none;
border-radius: 15px;
cursor: pointer;
transition: all 0.3s ease 0s;
}
button:hover{
background-color: rgba(247, 96, 114, 0.4);
cursor: url(./images/cursor2.png), default;
}
/*--------------- welcome text ---------------------- */
.welcome h1{
text-align: center;
color: white;
font-style: italic;
letter-spacing: 5px;
padding-bottom: 15px;
}
/*------------------------ video ------------------------- */
.video-container {
width: 994px;
height: 559px;
display: block;
margin: auto;
border-style: solid;
border-color: rgba(252, 190, 203, 1);
box-shadow: 0 0 20px 0px rgba(0, 0, 0, 1);
}
hr{
border-style: rounded;
border-color:rgba(247, 96, 114, 1);
border-radius: 30px;
width: 994px;
height: 5px;
background-color: rgba(247, 96, 114, 1);
margin-top: 35px;
}
/*------------------------ bottom button ------------------------- */
.YaeMiko{
display: flex;
justify-content: center;
border-color: rgba(39,39,39,0.473);
border-radius: 50px;
margin: auto;
}
.YaeMiko h1{
margin-top: 35px;
text-align: center;
color: white;
letter-spacing: 3px;
font-weight: 300;
}
.YaeMiko button{
background-color: rgba(39, 39, 39, 0.473);
border-radius: 15px;
cursor: default;
transition: all 0.3s ease 0s;
width: 200px;
height: 50px;
}
.YaeMiko button:hover{
box-shadow: 0 0 20px 0px rgba(0, 0, 0, 1);
cursor: url(./images/cursor2.png), default;
}
/* --------------------------- end ------------------------- */
.end{
margin-top: 15px;
text-align: center;
margin-bottom: 25px;
}
.end h1{
color: white;
font-weight: 500;
letter-spacing: 3px;
font-family: 'Monstserrat';
font-size: 20px;
}
/* ------------------------- footer ------------------------- */
#footer{
background-color: black;
position: relative;
height: 35px;
margin-top: -35px;
clear: both;
}
.footer-container{
display: flex;
justify-content: center;
align-items: center;
padding-top: 5px;
}
.footer-image{
width: 25px;
}
span + span{
margin-left: 10px;
}