-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
92 lines (83 loc) · 1.56 KB
/
styles.scss
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');
//pallete
$primary: #214252;
* {
padding: 0;
margin: 0;
box-sizing: border-box;
color: white;
font-family: 'Poppins', sans-serif;
}
body {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #ce6262;
}
button {
cursor: pointer;
}
.container {
background-color: $primary;
max-width: 400px;
width: 100%;
padding: 25px;
box-shadow: 10px 10px 30px rgba($color: #000000, $alpha: 0.4);
}
.pw-field {
width: 100%;
background-color: #285165;
padding: 0.4rem;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 20px;
i {
color: white;
height: 20px;
width: 20px;
}
button {
font-size: 20px;
display: flex;
align-items: center;
justify-content: center;
//height: 1.5rem;
//width: 1.5rem;
padding: 5px;
background-color: #f05454;
border: 0;
outline: 0;
&:hover {
background-color: #ff6b6b;
}
}
}
.checkbox-container {
margin: 3rem 0;
}
.form-control {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.5rem 0;
}
#length {
color: black;
text-align: center;
width: 20%;
outline: 0;
}
.generate {
width: 100%;
color: white;
padding: 0.5rem 0;
background-color: #f05454;
border: 0;
outline: 0;
&:hover {
background-color: #ff6b6b;
}
}