forked from smaudd/smallphones
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
90 lines (76 loc) · 1.45 KB
/
base.css
File metadata and controls
90 lines (76 loc) · 1.45 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
.device-card {
margin-bottom: 1rem;
border: 1px solid var(--pico-border-color);
border-radius: 8px;
padding: 1rem;
background: var(--pico-background-color);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.device-card h3 {
margin-top: 0;
color: var(--pico-primary);
}
.dimensions {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1rem;
}
.dimension-box {
display: flex;
align-items: center;
justify-content: center;
background: #e9ecef;
border: 1px solid #dee2e6;
border-radius: 4px;
}
.specs {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.5rem;
margin-top: 1rem;
}
.spec {
font-size: 0.9rem;
}
.spec strong {
color: var(--pico-muted-color);
}
#device-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
gap: var(--pico-grid-column-gap);
}
#filter-container {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
#filter-list-container {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
#filter-dropdown-container {
min-width: 100%;
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
#filter-dropdown-container label {
display: flex;
flex-direction: column;
}
#sort-container {
display: flex;
gap: 1rem;
align-items: end;
margin-bottom: 1rem;
}
[data-attribute="ram"],
[data-attribute="cpu"] {
text-transform: uppercase;
}
div[class^="-button"] {
padding: 1px;
}