-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
57 lines (50 loc) · 916 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
55
56
57
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
button {
padding: 0.4em;
font-family: inherit;
font-size: 16px;
}
#name {
font-size: 18px;
padding: 10px;
border-radius: 5px;
border: none;
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
margin-bottom: 20px;
width: 300px;
height: 30px;
background: ghostwhite;
padding: 1em;
outline: none;
}
.ok {
margin: 2em;
padding: 0.3em;
}
#password-field {
width: 100%;
border: 1px solid black;
padding: 10px;
}
#toggle-password {
position: absolute;
right: 10px;
top: 10px;
cursor: pointer;
}
#toggle-password.active {
display: block;
}