This repository was archived by the owner on Oct 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (112 loc) · 2.09 KB
/
style.css
File metadata and controls
112 lines (112 loc) · 2.09 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.header {
display: flex;
align-items: center;
justify-content: center;
min-height: 10vh;
background-color: #eee;
gap: 10px;
padding: 100px;
}
.header .input-box {
height: 50px;
width: 40%;
border-radius: 5px;
padding: 5px;
font-size: 18px;
font-weight: bold;
}
.header .add-button {
background-color: #eee;
color: black;
font-size: 18px;
font-weight: bold;
width: 100px;
height: 50px;
text-decoration: none;
cursor: pointer;
border: solid 1px black;
border-radius: 5px;
}
.header .add-button:hover {
background-color: #2196f3;
color: white;
}
.container {
min-height: 100vh;
width: 100%;
display: flex;
justify-content: center;
gap: 30px;
background-color: #eee;
}
.side {
width: 300px;
height: 400px;
border: 1px solid #ccc;
background-color: #fff;
display: flex;
align-items: center;
flex-direction: column;
padding: 15px;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
overflow-y: auto;
}
.box {
width: 100%;
border-radius: 5px;
display: flex;
align-items: center;
gap: 10px;
font-size: 20px;
padding: 0 10px;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.box:hover {
background-color: #f5f6f6;
}
.box input {
width: 17px;
height: 17px;
}
.box label {
width: 100%;
padding: 10px 0;
cursor: pointer;
}
.mid-side {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.mid-side * {
padding: 10px;
border-radius: 50%;
width: 40px;
border: 1px solid #2196f3;
height: 40px;
cursor: pointer;
color: #2196f3;
font-size: 16px;
font-weight: bold;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.mid-side *:hover {
background-color: #2196f3;
color: #fff;
}
.disabled {
border-color: #ccc;
color: #ccc;
pointer-events: none;
}
.disabled:hover {
color: #ccc;
background-color: unset;
}