-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
126 lines (109 loc) · 2.1 KB
/
Copy pathstyles.css
File metadata and controls
126 lines (109 loc) · 2.1 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body{
height:90vh;
}
.main{
height: 80%;
}
.form{
margin: 100px auto 0px;
width: 100%;
max-width: 250px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: solid 1px black;
border-radius: 4px;
padding: 20px;
}
.form input[type="text"]{
text-align: center;
width: 90%;
height: 30px;
border: solid 1px black;
border-radius: 4px;
}
.form input::placeholder{
color: rgb(173, 171, 171);
}
.form button{
margin: 10px;
padding: 7px;
width: 50%;
border: solid 1px black;
border-radius: 10px;
background-color: white;
transition: all .3s;
}
.form button:hover{
background-color: black;
color: white;
}
.form ul {
list-style: none;
margin: 10px;
width: 100%;
max-width: 250px;
display: flex;
flex-direction: column;
justify-content: center;
border-radius: 4px;
}
.li {
font-size: 15px;
font-weight: 200;
transition: all .3s;
margin: 3px;
display: flex;
justify-content: center;
align-items: center;
}
.li:hover{
border: solid 1px black;
border-radius: 10px;
margin: 5px;
padding: 5px;
padding-left: 0;
background-color: black;
color: white;
}
.li label{
width: 100%;
}
.li i {
font-size: 15px;
cursor: pointer;
padding: 3px;
}
.li i:hover{
color: red;
transition: all .3s;
}
.checkbox{
color: red;
margin-left: 3px;
transform: scale(1); /* Adjust scale factor as needed */
margin-right: 10px; /* Optional: Add some spacing */
}
.error{
color: red;
font-size: 12px;
display: none;
}
footer{
height: 20%;
width: 100%;
background-color: black;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}