-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (39 loc) · 840 Bytes
/
style.css
File metadata and controls
43 lines (39 loc) · 840 Bytes
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
@import 'open-props/normalize.min.css';
body {
font-family: var(--font-industrial);
padding: var(--size-fluid-2);
h1 {
font-weight: var(--font-weight-3);
}
form {
margin-top: var(--size-2);
}
input,
button {
margin-right: var(--size-2);
border-radius: var(--radius-1);
@media(orientation:portrait) {
width: 100%;
margin: var(--size-2) 0;
}
}
section {
display: grid;
gap: var(--size-4);
margin-top: var(--size-fluid-2);
@media(orientation:landscape) {
grid-template-columns: auto auto auto auto;
}
}
article {
overflow: hidden;
img {
border-radius: var(--radius-2);
}
samp {
padding: var(--size-1) var(--size-2);
border: var(--border-size-2) solid var(--gray-5);
box-shadow: var(--inner-shadow-4);
}
}
}