-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (70 loc) · 1.41 KB
/
style.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
header{
width: 100vw;
height: 90vh;
background-image: url(image/bgHeader.png);
background-size: 100vw;
background-repeat: no-repeat;
}
.main-header a img{
width: 221px;
height: 53px;
}
.main-header{
width: 100vw;
height: 100px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 10vw;
margin: 0 10px;
}
.main-header .navbar{
width: 450px;
display: flex;
justify-content: space-around;
align-items: center;
margin-right: 15vw;
}
.main-header .navbar li{
list-style: none;
}
.main-header .navbar li a{
text-decoration: none;
color: #2D2C64;
font-family: 'Poppins', sans-serif;
font-weight: 600;
}
.main-header .menuBtn button{
padding: 8px 20px;
text-align: center;
font-size: 14px;
font-weight: bold;
color: #fff;
border: none;
border-radius: 10px;
background: linear-gradient(114.44deg, #6D07CB 0%, #EFADFF 100%);
cursor: pointer;
}
.content{
position: absolute;
left: 50%;
top: 22%;
width: 100%;
max-width: 900px;
transform: translate(-50%, -50%);
text-align: center;
font-weight: bold;
font-size: 30px;
color: #2D2C64;
font-family: 'Poppins', sans-serif;
}
.userAc span{
font-weight: 600;
font-family: 'Poppins', sans-serif;
}