-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
174 lines (155 loc) · 4.07 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/**B"H*/
/* Overall page and container styling */
@font-face {
font-family: 'AwtsmoosifcationMonsterrat'; /* The name you'll use to refer to the font */
src: url('/shlichusApp/fonts/Monsteratt/Montserrat-VariableFont_wght.ttf') format('truetype'); /* Path to your .ttf file */
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: "AwtsmoosifcationMonsterrat";
margin: 0;
background-color: background(url)
}
.label {
padding-left: 16px;
}
.checkbox-container
.checkbox.checked {
border-radius:10px;
background-color:#847dd2;
display: flex;
justify-content: center;
align-items: center;
color:white;
}
.checkbox.checked::after {
content: '\2713'; /* Unicode for checkmark */
font-size: 100%; /* Adjust to fill the container */
color: white;
display: flex;
justify-content: center;
align-items: center;
}
.checkbox-container:hover {
cursor:pointer;
border-color:#afabd6
background:#dedede
}
.input-holder .label {
padding-left: 0px;
padding-bottom: 10px;
}
.input-holder {
padding: 25px 0;
box-sizing: border-box;
}
.logo {
padding-top: 50px;
height: 150px;
margin-top: 20px;
/* padding-bottom: 25px; */
}
.profile {
padding-bottom: 25px;
}
.img-container img {max-width: 100%;max-height: 100%;object-fit: contain;}
.img-container {
box-sizing: border-box;
display: flex;
justify-content: space-around;
background-position: 50px;
/* background: url("./img/logo.png") no-repeat; */
/* background-size: contain; */
}
:root {
--dash-height: 100px; /* Height of each dash */
--gap-height: 57px; /* Height of the gap between dashes */
--line-width: 40px; /* Width of the line */
}
.container * {
z-index:1;
}
.container {
width: 400px;
display: flex;
/*min-width: 400px;*/
padding: 0 25px 75px 25px;
background-position-y: t;
box-sizing: border-box;
background-color: #edecdf;
height: 100%;
overflow: scroll;
border-right: 7px solid #fddc26;
border-left: 7px solid #fddc26;
align-content: space-around;
flex-direction: column;
padding-bottom: 100px;
}
.container::before {
content: '';
position: absolute;
top: 0;
z-index:0 !important;
left: 50%; /* Center the line horizontally */
transform: translateX(-50%);
width: var(--line-width); /* Use variable for the line width */
height: 100%; /* Full height of the road */
background: repeating-linear-gradient(
to bottom,
#f5f5ed 0,
#f5f5ed var(--dash-height), /* Dash length */
transparent var(--dash-height), /* Start of the gap */
transparent calc(var(--dash-height) + var(--gap-height)) /* Total length of one dash + gap */
);
}
/* Styling for Button */
.button {
/* UI Properties */
background: #B5AFFF 0% 0% no-repeat padding-box;
border-radius: 15px;
opacity: 1;
padding: 18px 0;
text-align: center;
padding: 10px;
letter-spacing: 0.6px;
font-weight: 900;
font-size: 18px;
color: #FFFFFF;
text-transform: uppercase;
}
/* Styling for Checkbox */
.checkbox-container {
padding: 18px 0;
display: flex;
align-items: center;
}
.checkbox {
width: 30px;
border-radius: 50%;
background: white;
height: 30px;
border: 2px solid #847dd2;
}
.checkbox-container:nth-child(1) { top: 300px; left: 24px; }
.checkbox-container:nth-child(2) { top: 260px; left: 24px; }
.checkbox-container:nth-child(3) { top: 220px; left: 24px; }
/* Styling for Input Field */
.input-field {
width: 100%;
outline: none;
height: 63px;
box-sizing: border-box;
font-size: 1em;
color: #C4C4C4;
padding-bottom: 15px;
padding-top: 15px;
border-radius: 50px;
border: 2px solid #847dd2;
padding-left: 26px;
}
.btn:hover {
cursor:pointer
}