-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
101 lines (85 loc) · 1.5 KB
/
Copy pathstyles.css
File metadata and controls
101 lines (85 loc) · 1.5 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
* {
margin: 0;
padding: 0;
}
img {
height: 60px;
display: block;
}
.header__ul__li {
display: flex;
justify-content: flex-end;
background-color: #4cae4c;
font-size: 40px;
list-style: none;
}
.ul__li {
padding: 5px;
list-style: none;
}
.hover:hover {
border: solid black 2px;
box-sizing: border-box;
}
input[type="checkbox"] {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
}
.wrapper__popup {
opacity: 0;
visibility: hidden;
justify-content: end;
display: grid;
}
.input__popup-button:checked ~ .wrapper__popup {
visibility: visible;
opacity: 1;
}
.wrapper__list {
background-color: #4cae4c;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
column-gap: 10px;
row-gap: 10px;
overflow: auto;
width: 340px;
height: 250px;
box-sizing: border-box;
padding: 15px 15px 15px 15px;
}
.list__items {
list-style: none;
display: grid;
column-gap: 10px;
row-gap: 10px;
}
.list__items__more {
list-style: none;
opacity: 0;
visibility: hidden;
display: grid;
column-gap: 10px;
row-gap: 10px;
}
.input__popup-button__more {
display: none;
}
.input__popup-button__more:checked ~ .list__items__more {
visibility: visible;
opacity: 1;
}
.hover:focus {
border: solid black 4px;
}
a:focus {
border: solid black 4px;
}
.list_link > img {
max-width: 40px;
max-height: 40px;
}
h3 {
position: absolute;
right: 130px;
}