-
Notifications
You must be signed in to change notification settings - Fork 1
/
fact_style.css
75 lines (62 loc) · 1.03 KB
/
fact_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
.factbox {
display: inline-block;
padding: 16px;
margin: 10px 0;
max-width: 575px;
border: #ddd 1px solid;
border-top-color: #eee;
border-bottom-color: #bbb;
border-radius: 5px;
box-shadow: 0 1px 3px rgba(0,0,0,0.15);
font: bold 14px/18px Helvetica, Arial, sans-serif;
color: #000;
}
.fact {
width: 40%;
display: inline-block;
}
.fact-text {
font: 20px Times, serif;
float: left;
}
.left-box {
width: 25%;
height: 100%;
float: left;
overflow: auto;
margin: auto 2%;
}
.logo {
width: 100%;
}
.right-box {
float: right;
width: 24%;
height: 100%;
overflow: visible;
margin: auto 2%;
}
img.image {
max-width: 100%;
margin: 5px 0px;
max-height: 80px;
}
.subtext {
font-size: 10px;
font-weight: lighter;
}
.embed-box {
display:none;
}
@media screen and (max-width: 400px) {
.factbox {
max-width: 375px;
width: auto;
}
.container {
float: none;
margin: 10px; 0px;
width:auto;
border:0;
}
}