-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (41 loc) · 760 Bytes
/
style.css
File metadata and controls
43 lines (41 loc) · 760 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
@media only screen and (min-width: 600px) {
.container {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 10px;
}
.item {
text-align: center;
padding: 20px 0;
font-size: 30px;
}
.block-item {
margin: 0 auto;
width: 600px;
}
.url {
font-family: 'Courier New', Courier, monospace;
font-size: 1.5rem;
font-weight: bold;
}
}
.container {
background-color: #2196f3;
padding: 10px;
}
.item {
background-color: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 599px) {
.block-item {
margin: 0 auto;
display: block;
width: 320px;
}
.url {
font-family: 'Courier New', Courier, monospace;
font-size: rem;
font-weight: bold;
margin: 0 auto;
}
}