-
Notifications
You must be signed in to change notification settings - Fork 0
/
news.css
72 lines (62 loc) · 796 Bytes
/
news.css
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
.container
{
max-width : var(--maxWidth);
padding : 1em;
margin : auto;
}
.grid
{
display : grid;
grid-template-columns : 1fr 1fr;
gap : 1em;
}
.section, p
{
text-align : center;
}
p + .section
{
margin-top : 2em;
}
.section + .section
{
margin-top : 5em;
}
iframe
{
max-width : 100%;
}
img
{
max-width : 100%;
height : auto;
object-fit : contain;
}
.mhtimes-img
{
max-height : 450px;
}
h2
{
font-size : 1.25em;
text-transform : uppercase;
color : #393185;
margin-bottom : 1.5em;
}
h2::after
{
content : '';
display : block;
margin : auto;
width : 100px;
height : 3px;
background : #00A0E3;
margin-top : .5em;
}
@media(max-width : 800px)
{
.grid
{
grid-template-columns : 1fr;
}
}