-
Notifications
You must be signed in to change notification settings - Fork 24
/
B_weekdaysintern.html
80 lines (73 loc) · 1.96 KB
/
B_weekdaysintern.html
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
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<style>
body {
margin: 0;
padding: 0;
}
.banner {
height: 200px;
overflow: hidden;
min-width: calc(100vw / 3 - 20px);
margin-right: 20px;
margin-bottom: 20px;
}
.title {
line-height: 36px;
font-size: 36px;
}
.button {
float: right;
background-color: #FEDA5A;
color: black;
padding: 8px 20px;
line-height: 20px;
text-decoration: none;
}
.button:hover {
background-color: #fccd33;
}
.content {
line-height: 24px;
font-size: 24px;
}
.wrapper {
height: 200px;
width: calc(100vw + 20px);
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.s {
background-color: #8a2be2;
flex-grow: 1;
flex-basis: calc(100vw / 3 - 20px);
}
.l {
background-color: #000;
flex-grow: 2;
flex-basis: calc(100vw / 3 * 2 - 20px);
}
</style>
</head>
<body>
<div class="wrapper">
<div class="banner s">
</div>
<div class="banner s">
</div>
<div class="banner s">
</div>
<div class="banner s">
</div>
<div class="banner l">
</div>
<div class="banner l">
</div>
<div class="banner s">
</div>
</div>
</body>
</html>