-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypads.css
55 lines (50 loc) · 913 Bytes
/
mypads.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
html {
height: 100%;
}
body {
background: unset;
border: unset;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
margin: 0;
}
div#mypads {
max-width: 300px;
width: 100%;
}
form#password-form {
height: 38px;
background: #fff;
position: relative;
border-color: var(--color-fg);
border-radius: unset;
border-style: solid;
border-width: 3px;
}
form#password-form > input[type="password"] {
border: none;
box-sizing: border-box;
font-size: 15px;
font-weight: bold;
height: 38px;
line-height: 36px;
max-width: 350px;
outline: none;
padding: 0px 40px 0 10px;
width: 100%;
}
form#password-form > button {
background-color: var(--color-fg);
border: unset;
color: var(--color-bg);
cursor: pointer;
font-size: 15px;
font-weight: bold;
height: 38px;
position: absolute;
left: calc(100% - 45px);
top: 0;
width: 45px;
}