-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (87 loc) · 1.51 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
:root {
--bg-color: #eaebe6;
--holder-color: white;
--color-gray: #c7c7cc;
--text-color: var(--color-midnight);
}
@media (prefers-color-scheme: dark) {
:root {
--bg-color: #0e181a;
--holder-color: #142328;
--color-gray: #404b4d;
--text-color: #eaebe6;
}
}
body,
html {
width: 100%;
height: 100%;
margin: 0px;
}
body {
color: var(--text-color);
background: var(--bg-color);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-family: "Avenir";
}
#holder {
background: var(--holder-color);
padding: 3.5rem 2rem;
text-align: center;
}
#badge {
height: 128px;
margin: auto;
display: block;
}
h1 {
font-family: "Aleo";
}
#pass {
text-align: left;
display: inline-block;
font-size: 16px;
}
#password-label {
display: block;
text-align: left;
}
#pw-form {
border-bottom: 3px solid var(--color-gray);
transition: all 0.4s;
display: flex;
width: 100%;
justify-content: space-between;
}
#pw-form.active {
border-bottom: 3px solid var(--color-bitcamp);
transition: all 0.4s;
}
#submit {
width: 32px;
height: 32px;
display: inline-block;
background: var(--color-gray);
transition: all 0.4s;
cursor: pointer;
}
#submit.active {
background: var(--color-bitcamp);
transition: all 0.4s;
}
input {
background: var(--holder-color);
border: 0px;
line-height: 32px;
margin: 0px;
font-family: "Avenir";
outline: none;
}
#copy {
color: var(--color-gray);
position: absolute;
bottom: 0;
}