-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
40 lines (40 loc) · 1010 Bytes
/
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
* {
box-sizing: border-box;
font-family:"Tahoma";
}
img {
display:table;
margin:0 auto;
max-width:100%;
height:auto;
object-fit: contain;
width:584px;
height:438px;
}
.container {
display: table;
width:100%;
border:2px dashed #ccc;
padding:0 5px 5px 5px;
}
.wide, .left-wide, .left-narrow,
.right-wide, .right-narrow, .one-third {
border:2px dashed #ccc;
padding:5px;
margin-top:5px;
float:left;
text-align: justify;
min-height:194px;
display:table;
}
.left-wide, .left-narrow, .right-wide, .right-narrow {
min-height:452px;
}
.wide { width:100%; }
.left-wide { width:calc(100% / 3 * 2 - 5px); margin-right:5px; }
.right-wide { width:calc(100% / 3 * 2); margin-left:5px; }
.left-narrow { width:calc(100% / 3 - 5px); }
.right-narrow { width:calc(100% / 3); }
.one-third { width:calc(100% / 3 - 5px); margin-left:5px; }
.first-third { margin-left:0; }
.last-third { width:calc(100% / 3); }