-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
96 lines (89 loc) · 1.52 KB
/
main.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: inherit;
}
body {
margin: 0;
padding: 0;
}
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
}
.header {
display: block;
background-color: #E7E8EA;
width: 100%;
height: 85px;
}
.header img {
max-height: 100%;
max-width: 95%;
}
.items {
margin-top: 45px;
margin-left: 20px;
display: -webkit-box;
display: flex;
flex-wrap: wrap;
-webkit-box-align: start;
align-items: flex-start;
max-width: 850px;
}
.items .item {
margin-left: 50px;
display: -webkit-box;
display: flex;
width: 360px;
padding-top: 10px;
margin-bottom: 10px;
border-top: #000 dotted 1px;
text-decoration: none;
color: #000;
}
.items .item:nth-child(1), .items .item:nth-child(2) {
border-top: none;
}
.items .item img {
width: 75px;
}
.items .item .content {
margin-left: 8px;
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
font-size: 0.7rem;
max-width: 280px;
}
.items .item .content h4 {
font-weight: bold;
font-size: 1.1em;
color: #990000;
margin-bottom: 5px;
}
.footer {
border-bottom: #990000 solid 2px;
border-bottom-width: 2px;
margin-top: 65px;
width: 100%;
}
@media only screen and (max-width: 500px) {
.items {
margin-left: 0;
margin-top: 10px;
}
.items .item {
margin-left: 5vw;
width: 90vw;
}
.items .item:nth-child(2) {
border-top: #000 dotted 1px;
}
.footer {
margin-top: 10px;
}
}