-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpassword.css
102 lines (90 loc) · 1.56 KB
/
password.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
*{
box-sizing: border-box;
}
body {
background-color: rgb(31, 41, 55);
align-items: center;
min-width: 500px;
min-height: 400px;
}
#intropage{
margin-left: -300px;
font-weight: bold;
font-family: sans-serif;
margin-top: 0;
border-bottom: 1px solid gray;
}
h1{
color: white;
font-weight: bolder;
text-align: center;
}
h2{
color: grey;
text-align: center;
background-color: transparent;
margin-left: 260px;
margin-top: -20px;
}
span{
color: rgb(60, 167, 109);
margin-right: -120px;
}
button {
width: 200px;
height: 30px;
background-color: rgb(60, 167, 109);
border: none;
color: white;
font-family: sans-serif;
font-weight: bolder;
margin-top: 20px;
margin-left: -250px;
border-radius: 5px;
}
button:hover{
cursor: pointer;
}
.passwordpage{
position: absolute;
left: 0;
top: 50%;
text-align: center;
width: 100%;
margin-top: 0;
}
#password1{
display: inline-block;
}
#password2{
display: inline-block;
}
#password3{
display: inline-block;
}
#password4{
display: inline-block;
}
p {
background-color:rgb(39, 53, 73) ;
width: 300px;
height: fit-content;
margin: 10px;
text-align: center;
font-size: 20px;
border-radius: 5px;
color:rgb(60, 167, 109) ;
}
@media screen and (max-height: 480px) {
.passwordpage {
position: static;
}
#btn-el{
margin: auto;
margin-top: 20px;
}
body{
background-color: black;
color: white;
}
}