-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfront.css
126 lines (121 loc) · 2.29 KB
/
front.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
*{
margin: 0;
padding: 0;
font-family: sans-serif;
}
body {
overflow: hidden; /* Apply to body to restrict overflow for the entire page */
}
.a{
width:100%;
height:100vh;
background-image: linear-gradient(rgba(0,0,0,0.68),rgba(0,0,0,0.68));
position: relative;
padding: 0 5%;
display: flex;
justify-content: center;
}
.bvideo{
position: absolute;
right : 0;
bottom : 0;
z-index : -1;
}
.nav{
font-family:sans-serif;
font-size: 1.1vw;
width:85%;
margin:10px 0;
padding:28px 0;
justify-content:space-between;
display: flex;
}
.aa ul li{
list-style: none;
display: inline-block;
margin: 0 20px;
position: relative;
}
.aa ul li a{
text-decoration: none;
color: #fff;
text-transform: uppercase
}
.aa ul li::after{
content: '';
height: 3px;
width: 0;
background: aqua;
position: absolute;
left: 0;
bottom: -10px;
transition: 0.5s;
}
.aa ul li:hover::after{
width: 100%;
}
.logo{
width: 50px;
height: 50px;
cursor: pointer;
}
.hello{
width: 100%;
position: absolute;
top: 50%;
transform: translatey(-50%);
text-align: center;
color:#fff;
}
.c{
-webkit-text-stroke: 3px black;
font-size: 3vw;
text-decoration: underline;
text-decoration-color: aqua;
text-decoration-thickness: 1px;
text-underline-offset: 8px;
}
.y{
font-size: 0.8vw;
font-family:cursive;
}
.w{
font-family:monospace;
font-size: 0.9vw;
}
.button{
width: 200px;
padding: 11px 0;
text-align: center;
margin: 1px 220px;
border-radius: 25px;
background-color: aqua;
font-weight: bold;
border: 2px solid #009688;
background: transparent;
color: #fff;
cursor:hand;
text-decoration: none;
position: absolute;
}
.button:hover span {
padding-right: 25px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
.button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}