forked from urfu-2016/markup-task-4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
190 lines (170 loc) · 2.82 KB
/
index.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
@font-face
{
font-family: Faster One;
src: local('Faster One')
, url(fonts/FasterOne-Regular.ttf)
, url(fonts/FasterOne-Regular.woff);
}
@font-face
{
font-family: Ruslan Display;
src: local('Ruslan Display')
, url(fonts/RuslanDisplay.ttf)
, url(fonts/RuslanDisplay.woff);
}
@font-face
{
font-family: Lobster;
src: local('Lobster')
, url(fonts/Lobster-Regular.ttf)
, url(fonts/Lobster-Regular.woff);
}
@font-face
{
font-family: Neucha;
src: local('Neucha')
, url(fonts/Neucha.ttf)
, url(fonts/Neucha.woff);
}
@font-face
{
font-family: Marck Script;
src: local('Marck Script')
, url(fonts/MarckScript-Regular.ttf)
, url(fonts/MarckScript-Regular.woff);
}
@font-face
{
font-family: Prosto One;
src: local('Prosto One')
, url(fonts/ProstoOne-Regular.ttf)
, url(fonts/ProstoOne-Regular.woff);
}
@font-face
{
font-family: Russo One;
src: local('Russo One')
, url(fonts/RussoOne-Regular.ttf)
, url(fonts/RussoOne-Regular.woff);
}
@font-face
{
font-family: Pattaya;
src: local('Pattaya')
, url(fonts/Pattaya-Regular.ttf)
, url(fonts/Pattaya-Regular.woff);
}
@font-face
{
font-family: Ledger;
src: local('Ledger')
, url(fonts/Ledger-Regular.ttf)
, url(fonts/Ledger-Regular.wofff);
}
@font-face
{
font-family: Anonymous Pro;
src: local('Anonymous Pro')
, url(fonts/AnonymousPro-Italic.ttf)
, url(fonts/AnonymousPro-Italic.woff);
}
body
{
background-color: #eee;
margin: 30px;
}
header
{
font: bold 100px Faster One;
text-align: center;
}
h1
{
font: 30px Ruslan Display;
text-align: center;
}
h2
{
font-family: Lobster;
}
blockquote
{
font: 20px Marck Script;
}
p
{
text-indent: 1%;
white-space: normal;
}
p.first-paragraph::first-letter
{
font: italic 35px Times New Roman;
margin: 5px;
padding: 5px;
color: #000;
}
.coach
{
font-family: Pattaya;
}
.young-player
{
font-family: Ledger;
}
.player
{
font-family: Neucha;
}
.club
{
font-family: Prosto One;
font-size: 13px;
}
.governing
{
font-family: Anonymous Pro;
}
.president
{
font-family: Russo One;
}
.shock
{
text-decoration: underline;
}
.vertical-text
{
font-size: 30px;
font-weight: bold;
}
footer
{
font: italic bold 20px Times New Roman;
margin-top: 15px;
}
.main-article
{
column-width: 550px;
-moz-column-width: 550px;
-webkit-column-width: 550px;
column-rule: 2px solid;
-moz-column-rule: 2px solid;
-webkit-column-rule: 2px solid;
}
.facts
{
border: 3px solid;
padding: 1%;
margin-top: 40px;
}
.img-center
{
display: block;
margin: 0 auto;
width: 90%;
border-radius: 20px 10px;
}
figcaption
{
text-align: center;
}