-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (98 loc) · 2.01 KB
/
Copy pathstyle.css
File metadata and controls
111 lines (98 loc) · 2.01 KB
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
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
:root {
--color1: #393232;
--color2: #3A6351;
--color3: #F2EDD7;
--color4: #E48257;
--color5: white;
--color6: black;
}
body {
background-color: var(--color1);
margin: 0;
color: var(--color3);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Rubik', sans-serif;
}
.container {
background-color: var(--color2);
padding: 2rem;
border-radius: 0.5rem;
border: 2px solid var(--color3);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
box-shadow: 0px 0px 18px 8px rgba(0, 0, 0, 0.48);
}
.form {
display: grid;
grid-template-columns: auto auto;
row-gap: 1rem;
column-gap: 3rem;
justify-content: center;
align-items: center;
}
.title {
margin: 0;
text-align: center;
}
label {
font-weight: bold;
}
.character-amount-container {
display: flex;
align-items: center;
}
.number-input {
width: 2rem;
}
.password-display {
background-color: var(--color5);
color: var(--color1);
padding: 1rem;
border: 2px solid var(--color3);
height: 2rem;
width: 350px;
display: flex;
justify-content: center;
align-items: center;
word-break: break-all;
border-radius: 0.5rem;
}
.btn {
grid-column: span 2;
background-color: var(--color3);
border: 2px solid var(--color3);
color: var(--color1);
padding: .5rem 1rem;
font-weight: bold;
cursor: pointer;
border-radius: 0.5rem;
transition-duration: .3s;
transition-timing-function: ease;
}
.btn:hover {
background-color: transparent;
color: var(--color3);
}
footer {
position: fixed;
width: 100%;
height: 5%;
bottom: 10px;
justify-content: space-between;
}
footer p {
text-align: center;
font-size: small;
color: var(--color3);
}
@media (max-width: 500px) {
.container {
padding: 1rem;
}
}