-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
63 lines (55 loc) · 1.09 KB
/
custom.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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
input:focus-visible {
outline: 0;
}
.main {
background-color: #3498db;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.box {
min-width: 400px;
padding: 10px;
box-shadow: 0 4px 10px rgb(0 0 0 / 50%);
background: #2980b9;
border-radius: 2px;
margin-top: 10px;
}
#pass-box {
width: 100%;
display: block;
background-color: white;
font-size: 30px;
padding: 10px;
border-radius: 4px;
}
.row {
width: 100%;
display: flex;
margin-top: 10px;
justify-content: space-between;
color: white;
font-size: 20px;
}
label {
user-select: none;
}
#btn {
width: 100%;
font-size: 20px;
outline: 0;
border: 0;
padding: 10px;
background-color: #34495e;
color: white;
margin-top: 10px;
border-radius: 5px;
}