-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (111 loc) · 2.2 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,[email protected],200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900;6..12,1000&display=swap');
* {
box-sizing: border-box;
}
body {
background-color: #1B262C;
color: whitesmoke;
font-family: 'Nunito Sans', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
margin: 0;
padding: 10px;
height: 100vh;
}
h2 {
margin: 10px 0 20px;
text-align: center;
font-size: 1.6rem;
}
.container {
background-color: #E23E57;
box-shadow: 0px 2px 10px rgba(255, 255, 255, 0.2);
padding: 60px 30px 10px;
width: 400px;
max-width: 100%;
border-radius: 10px;
}
.password-container {
background-color: #1B262C;
display: flex;
justify-content: flex-start;
align-items: center;
position: relative;
font-size: 1.1rem;
letter-spacing: 1px;
padding: 12px 10px;
height: 50px;
width: 100%;
border-radius: 8px;
margin-top: 30px;
}
.password-container #password {
word-wrap: break-word;
max-width: calc(100%-40px);
}
.password-container .btn {
position: absolute;
top: 5px;
right: 5px;
width: 40px;
height: 40px;
font-size: 18px;
border-radius: 6px;
}
.btn {
border: none;
background-color: whitesmoke;
color: #1B262C;
font-size: 1rem;
padding: 8px 12px;
cursor: pointer;
font-family: inherit;
}
.btn-large {
display: block;
width: 100%;
font-size: 1.1rem;
font-weight: 700;
margin-top: 30px;
border-radius: 8px;
padding: 12px 10px;
}
.settings {
margin-top: 30px;
}
.setting {
display: flex;
justify-content: space-between;
align-items: center;
margin: 15px 0;
font-size: 1.1rem;
font-weight: 700;
}
.large-checkbox {
transform: scale(1.3);
}
.number {
color: #1B262C;
border: 2px solid #1B262C;
border-radius: 5px;
text-align: center;
font-size: 1rem;
font-weight: 600;
padding: 3px;
}
.length input {
width: 50px;
}
input {
border: none;
}
input:focus {
outline: none;
}
p {
text-align: right;
margin-top: 50px;
}