-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (59 loc) · 1.18 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
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');
body {
margin: 0;
padding: 0;
font-family: 'Oswald', sans-serif;
background: url(bg.jpg) no-repeat;
background-size: cover;
}
.login-box {
width: 280px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
background: rgba(36, 34, 34, 0.2);
padding: 40px;
border-radius: 30px;
}
.login-box h1 {
float: left;
font-size: 40px;
border-bottom: 1px solid rgb(102, 5, 182);
margin-bottom: 50px;
padding: 13px 0;
}
.textbox {
width: 100%;
overflow: hidden;
font-size: 20px;
padding: 8px 0;
margin: 8px 0;
border-bottom: 1px solid rgb(102, 5, 182);
}
.textbox i {
width: 26px;
float: left;
text-align: center;
}
.textbox input {
border: none;
outline: none;
background: none;
color: white;
font-size: 18px;
width: 80%;
float: left;
margin: 0 10px 10px;
}
.btn {
width: 100%;
background: none;
border: 1px solid rgb(102, 5, 182);
color: white;
padding: 5px;
font-size: 18px;
cursor: pointer;
margin: 12px 0;
}