-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathstyles.css
More file actions
41 lines (34 loc) · 783 Bytes
/
styles.css
File metadata and controls
41 lines (34 loc) · 783 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
@import url('https://fonts.googleapis.com/css?family=Dokdo');
body {
font-family: Dokdo, sans-serif;
font-size: 22px;
display: flex;
flex-direction: column-reverse;
}
.container {
display: flex;
}
.box {
max-width: 500px;
margin-right: 40px;
}
h1 {
font-size: 40px;
}
.images {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-gap: 15px;
}
.images img {
width: 100%;
height: auto;
}
.blog {
background: linear-gradient(135deg, #eceddc 25%, transparent 25%),
linear-gradient(225deg, #eceddc 25%, transparent 25%),
linear-gradient(315deg, #eceddc 25%, transparent 25%),
linear-gradient(45deg, #eceddc 25%, transparent 25%);
background-size: 20px 20px;
background-color: #782345;
}