-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
54 lines (47 loc) · 931 Bytes
/
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
body {
width: 250px;
text-align: center;
border-radius: 15px;
background: linear-gradient(to bottom, #ffcc00, #ff9900); margin: 20px;
}
p{
font-weight: bold;
font-size: 15px;
}
button {
padding: 5px;
margin: 6px;
width: 200px;
cursor: pointer;
border-radius: 10px;
font-weight: bold;
background-color: #ffc400;
}
#enableButton{
background-color: green;
}
#disableButton{
background-color: rgb(237, 57, 57);
}
button:hover{
background-color: #ce9f04;
}
#passwordInput {
padding: 10px;
border: 2px solid #ccc;
border-radius: 5px;
font-size: 16px;
outline: none;
transition: border-color 0.3s;
}
#passwordInput:focus {
border-color: #007bff;
}
.icon {
background-color: #007bff;;
border-radius: 25px;
width: 40px;
height: 40px;
margin-left: 6px;
vertical-align: middle;
}