-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
138 lines (125 loc) · 1.93 KB
/
style.css
File metadata and controls
138 lines (125 loc) · 1.93 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
127
128
129
130
131
132
133
134
135
136
137
138
/* Start reset */
html {
font-size: 10px; /*stabilim dim de 1 rem*/
}
body {
font-family: Arial, sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
ul,
ol {
list-style-type: none;
}
a {
text-decoration: none;
}
input,
input:focus,
textarea,
textarea:focus {
border: unset;
outline: unset;
box-shadow: unset;
}
/* end reset */
#usersList * {
font-size: 1.5rem;
cursor: pointer;
}
.container {
margin: 1rem;
}
input {
padding: 3px;
padding-right: 1.2rem;
border: 2px solid grey;
max-width: 13rem;
border-radius: 5px;
margin-right: 1rem;
}
input:focus {
background-color: #fafafa;
border: 2px solid black;
}
button,
button:focus,
button:active {
padding: 3px 10px;
border: 2px solid black;
border-radius: 5px;
cursor: pointer;
background-color: lightgreen;
transition: 0.3s ease-in;
margin-bottom: 0.5rem;
height: 3.5rem;
color: #2b2b2b;
}
button:hover {
background-color: #fafafa;
border-color: grey;
}
#left {
position: fixed;
top: 0;
left: 0;
height: 100%;
max-width: 16rem;
border-right: 2px solid black;
margin-bottom: 1rem;
}
#right {
width: calc(100vw - 17rem); /* Adjust width dynamically */
position: relative;
right: -15.3rem;
}
ul {
max-width: 100%;
}
li {
display: flex;
display: inline-block;
min-width: 20rem;
transition: 0.2s ease-out;
border-radius: 5px;
padding: 5px;
position: relative;
}
li:hover {
background-color: #eaeaea;
}
span:nth-child(1) {
background-color: #eaeaea;
border-radius: 50%;
padding: 2px 10px;
}
.remove {
color: #2b2b2b;
display: none;
border-radius: 30%;
padding: 0 1px;
position: absolute;
right: 2px;
top: -3px;
font-size: 8px;
}
li:hover .remove {
display: inline;
transition: color 0.2s ease-in;
}
.remove:hover {
color: red;
}
.fa-solid {
font-weight: 900;
color: grey;
position: fixed;
top: 20px;
left: 123px;
font-size: 1.4rem;
height: 6rem;
cursor: pointer;
}