-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (54 loc) · 1.02 KB
/
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
@font-face {
/* Added Font for Heading 1 - Title of the web page. */
font-family:Z003;
src:url(Z003-MediumItalic.ttf);
}
body {
/* font-size: 22px; */
background-color:#eadbcb;
background-image:url('images/spiral.svg');
font-family:sans-serif;
}
header * {
/* Removes space between the logo, and h1, so it looks seamless.*/
padding:0px;
margin:0px;
}
h1 {
/*Properties for the heading at the top of every web page.*/
text-align:center;
font-family:Z003;
font-size:38px;
background-color:#cf142b;
color:#ffffff;
}
main {
padding:5px;
background-color:#ffffff;
max-width: 700px;
margin:auto;
}
a {
/* Properties of every hyperlink found on the website. */
color: #cf142b;
}
nav {
text-align:center;
}
img.logo {
height:auto;
width:650px;
}
img.button {
margin-left:15px;
width:220px;
}
img.language {
/* Properties for the language flags, at the start of every link. */
width:20px;
}
span.comment {
/* Formating for comments in brackets, added between text in the articles.*/
color: grey;
font-style: italic;
}