-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (98 loc) · 2.35 KB
/
style.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
97
98
99
100
101
102
103
104
105
106
107
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0;
padding: 20px;
font: small-caps 400 17px monospace;
}
header{
font-size:1.4em;
}
article{
max-width:900px;
text-align:center;
}
h5, .red{
color:red;
}
cite{
color: green;
}
.ad-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
background-color:#ccc;
padding:0px 5px;
gap: 20px;
max-width: 90%;
width: 100%;
font: 12px courier;
}
.ad {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #f5f5f5;
border: 1px solid #ccc;
padding: 10px;
width: 220px;
min-height: 150px;
height:auto;
text-align: center;
}
.ad-container-header{
flex: 0 0 100%;
font-size:1em;
border-bottom:1px solid #000;
background-color:#000;
color: #fff;
padding:10px 5px;
}
.ad-container-header > h2{
display:inline;
margin:0.3em;
}
.ad-container-header > span{
display:inline;
float:right;
}
.ad > a {
text-decoration: none;
color: #000;
}
.ad > a:hover {
text-decoration: underline;
}
.ad > a > div > img {
width: 100%;
height: 220px;
object-fit:cover;
}
.ad > a > h3 {
font-size: 0.9em;
margin: 0;
padding: 0;
}
.ad > a > p {
font-size: 0.7em;;
margin: 5px 0 0;
padding: 0;
}
.banner-ad {
height: 200px;
background: lightblue;
}
.video-ad {
height: 250px;
background: lightgreen;
margin-top: 20px;
}
.audio-ad {
height: 100px;
background: lightyellow;
margin-top: 20px;
} w