-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (80 loc) · 1.38 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.container {
min-height: 100vh;
width: 100%;
display: flex;
align-items: center;
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;
}