-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (90 loc) · 1.9 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
header{
text-align: center;
color: aqua;
font-size: 23px;
}
body{
margin: 0;
padding: 0;
font-family: 'Roboto Mono', monospace;
height: 100%;
background-image: linear-gradient(to right top, #020202, #0f0920, #121037, #13124e, #161267);
background-repeat: no-repeat;
background-attachment: fixed;
}
.container{
width: 300px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
}
.loginBox h1{
text-align: center;
text-transform: uppercase;
float: left;
font-size: 50px;
border-bottom: 8px solid;
margin-bottom: 50px;
padding: 13px 0;
color: rgb(2, 255, 255);
}
.loginBox h2{
width: 100%;
overflow:hidden;
font-size: 13px;
padding: 8px 0;
margin: 8px 0;
border-bottom: 2px;
color: aqua;
}
h3 {
color: aqua;
}
input{
border: 0;
background: none;
margin: 20px auto;
text-align: center;
border: 2px solid #368EAA;
padding: 20px 40px;
color: white;
border-radius: 24px;
}
.button1{
border: 0;
background: none;
margin: 20px 8px;
text-align: center;
border: 2px solid #26ee26;
padding: 20px 14px;
color: white;
border-radius: 24px;
}
.button2{
border: 0;
background: none;
margin: 20px auto;
text-align: center;
border: 2px solid #aa3636;
padding: 20px 14px;
color: white;
border-radius: 24px;
transition: 0.25s;
}
.button3{
border: 0;
background: none;
margin: -10px 50px;
text-align: center;
border: 2px solid #368EAA;
padding: 20px 40px;
color: white;
border-radius: 24px;
}
footer{
font-size: 15px;
font-family: inherit;
color:aqua
}