-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
124 lines (90 loc) · 1.68 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
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
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap');
* {
margin: 0;
padding: 1vh;
}
.icon i {
color: white;
}
.si {
padding: 0.3vh;
margin-right: 9px;
}
.nav ul li {
list-style-type: none;
}
body {
background: url('bbg.jpg')no-repeat center center fixed;
background-size: cover;
}
.container {
color: white;
position: absolute;
top: 25%;
left: 35%;
}
.box input {
background: none;
border: 0ch;
}
.box i {
width: 4vh;
text-align: center;
}
.btn:hover {
background-color: white;
color: black;
}
h1 {
font-size: 6vh;
display: flex;
justify-content: left;
font-family: 'Noto Serif', serif;
padding: 5vh;
}
.box {
padding: 1vh;
border-bottom: 0.1vh solid white;
}
.feild {
height: 5vh;
color: white;
width: 49vh;
font-size: 2.3vh;
}
.btn {
padding: 1vh;
display: block;
background: none;
margin: 2vh;
border: 2px solid white;
color: white;
border-radius: 15px;
font-size: 1.6vh;
}
li a {
color: white;
text-decoration: none;
}
.nav {
display: none
}
.icon:hover .nav {
display: block;
margin: 2vh;
font-size: 2.3vh;
position: absolute;
height: 100%;
padding: 0.4vh;
margin-left: -1px;
}
::placeholder {
color: white;
}
.icon:hover .nav li {
padding: 2.5vh;
border-bottom: 2px solid rgb(243, 158, 169);
}
.icon:hover .nav :last-child {
border-bottom: none;
}