-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (93 loc) · 2.11 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
@import url('https://fonts.googleapis.com/css2?family=Freeman&family=Teachers:ital,wght@0,400..800;1,400..800&display=swap');
body {
background-image: url("components/Lilac.jpg");
background-repeat: no-repeat;
background-size: cover;
}
.container {
width: min(450px, 90%);
background: #8c92bb;
font-family: "Teachers", sans-serif;
border-radius: 8px;
padding: 15px;
padding-bottom: 20px;
margin: 50px auto;
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.container h1 {
font-family: "Freeman", sans-serif;
font-weight: 900;
font-size: 1.31rem;
padding: 1rem 1.75rem;
border-bottom: 1px solid #8c92bb;
}
.wrapper {
margin: 1.25rem 1.75rem;
}
.wrapper .input-box {
position: relative;
}
.input-box input {
width: 83%;
height: 53px;
color: #fff;
background: #858bb2;
font-size: 1.06rem;
font-weight: 500;
border-radius: 4px;
letter-spacing: 1.4px;
border: 1px solid #000;
padding: 0 2.85rem 0 1rem;
}
.input-box span {
position: absolute;
right: 13px;
cursor: pointer;
line-height: 53px;
color: #000;
}
.input-box span:hover {
color: #46495e !important;
}
.wrapper .pass-settings {
margin: 1.56rem 0 1.25rem;
}
.pass-settings .options {
display: flex;
list-style: none;
flex-wrap: wrap;
margin-top: 1rem;
}
.pass-settings .options .option {
display: flex;
align-items: center;
margin-bottom: 1rem;
width: calc(50% - 0.5rem); /* Adjusted for better spacing */
}
.options .option:first-child input {
opacity: 0.7;
}
.options .option label {
cursor: pointer;
color: #000;
padding-left: 0.63rem;
}
.pass-settings input[type="checkbox"] {
accent-color: #46496e;
}
.wrapper .generate-btn {
width: 100%;
color: #fff;
border: none;
outline: none;
cursor: pointer;
background: #46496e;
font-size: 1.06rem;
padding: 0.94rem 0;
border-radius: 5px;
text-transform: uppercase;
margin: 0.94rem 0 1.3rem;
}
.wrapper .generate-btn:hover {
background-color: #46495e;
}