-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathstyles.html
130 lines (107 loc) · 2 KB
/
styles.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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700,300italic&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
<style>
body, h1, h2, h3, h4, h5, h6, .descr, .subtitle, #cite, .footer {
text-rendering: optimizeLegibility;
font-smoothing: antialiased;
font-family: 'Open Sans Condensed', sans-serif;
font-size: 17px;
margin:6px 2px 0px 2px;
}
#cite {
position: fixed;
bottom:0;
font-size: 0.8em;
font-weight: lighter;
color: #4d4d4d;
text-align: right;
margin-top:30px;
margin-left:2%;
margin-right:10px;
}
#cite a { text-decoration: none; color: #821122; }
.container {
width: 100%;
min-height:100%;
position: relative;
}
.footer {
font-size: 1.1em;
color: #9B9B9B;
padding: 0px;
margin-left:3%;
margin-bottom:8px;
max-width:80%;
}
.descr {
font-size: 1.1em;
color: #4d4d4d;
font-weight: lighter;
max-width:90%;
margin-left:1%;
margin-bottom:5px;
}
.subtitle{
font-size: 0.9em;
line-height: 98%;
color: #4d4d4d;
font-weight: lighter;
max-width:97%;
margin-left:3%;
}
h1 {
font-size:2em;
}
h2 {
font-size:1.6em;
line-height: 105%;
font-weight: bolder;
max-width:88%;
margin-left:1%;
}
h3 {
font-size:1.2em;
margin-left:2%;
color: #003333;
}
h4 {
font-size:1.1em;
}
h5 {
font-size:0.9em;
}
h6 {
font-size:0.8em;
}
a:visited {
color: rgb(50%, 0%, 50%);
}
body {
max-width:100%;
background-image: url('icons/2016_Summer_Olympics_logo.svg.png');
background-size: 63px 80px;
background-repeat: no-repeat;
background-attachment: absolute;
background-position: 99.5% 0.15%;
}
a, a:visited {
text-decoration: underline;
}
}
svg {
position: absolute;
top: 0;
left: 0;
}
div.graphic {
border-radius: 10px;
background-color:#F7F7F7;
width:295px;
height:410px;
margin-right:3px;
margin-left:2px;
margin-top:2px;
margin-bottom:2px;
float:left;
position:relative;
}
</style>