-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
49 lines (43 loc) · 824 Bytes
/
main.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
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background: radial-gradient(ellipse at top, #2a4765, transparent),
radial-gradient(ellipse at bottom, black, transparent);
background-color: black;
overflow: hidden;
}
body {
display: flex;
flex-direction: row;
align-items: center;
}
#icon {
-webkit-app-region: drag;
width: 24px;
height: 100%;
padding: 1px 6px;
}
#close-svg {
width: 32px;
height: 16px;
}
#close-btn {
height: 100%;
outline: 0;
border: 0;
background-color: transparent;
}
#close-btn:hover {
background-color: red;
}
#password-entry {
background-color: #272C36;
outline: none;
border: none;
flex-grow: 1;
height: 100%;
color: green;
caret-color: greenyellow;
}