main
css
23 lines
260 Bytes
|
1
|
.ListItem { |
|
2
|
list-style-type: none; |
|
3
|
} |
|
4
|
|
|
5
|
.Input { |
|
6
|
cursor: pointer; |
|
7
|
} |
|
8
|
|
|
9
|
.Label { |
|
10
|
cursor: pointer; |
|
11
|
padding: 0.25rem; |
|
12
|
color: #555; |
|
13
|
} |
|
14
|
.Label:hover { |
|
15
|
color: #000; |
|
16
|
} |
|
17
|
|
|
18
|
.IconButton { |
|
19
|
padding: 0.25rem; |
|
20
|
border: none; |
|
21
|
background: none; |
|
22
|
cursor: pointer; |
|
23
|
} |