-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.scss
55 lines (55 loc) · 1.01 KB
/
contact.scss
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
//====================================================================================================
.article {
max-width: 700px;
padding: 0px 10px 30px;
margin: 0px auto;
// .article__title
&__title {
font-size: 34px;
font-weight: 700;
line-height: 50 / 34 * 100%;
margin: 0px 0px 30px 0px;
@media (max-width: $md3+px) {
font-size: 30px;
}
}
// .article__info
&__info {
display: flex;
margin: 0px 0px 20px 0px;
}
// .article__year
&__year {
background: #ff7c7c;
border-radius: 16px;
height: 25px;
padding: 0px 10px;
font-size: 18px;
font-weight: 900;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
}
// .article__category
&__category {
align-self: center;
font-size: 20px;
line-height: 25 / 20 * 100%;
margin: 0px 0px 0px 25px;
@media (max-width: $md3+px) {
font-size: 18px;
}
}
// .article__text
&__text {
p {
@extend .text;
margin: 0px 0px 20px 0px;
}
img {
max-width: 100%;
margin: 0px 0px 20px 0px;
}
}
}