-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
96 lines (82 loc) · 1.58 KB
/
styles.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
@import url(https://fonts.googleapis.com/css?family=Domine:400,700);
/* Styles for example pages */
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
img,object,embed {
display: block;
max-width: 100%;
}
/* Base colors
* #E9632F Orange
* #F6CDB9 Orange light
* #3A180B Dark
* #743115 Mid
* #FFF White
*/
body {
max-width: 1050px;
margin: 0 auto;
font-size: 100%;
line-height: 1.4em;
background: #E74C3C none repeat scroll 0% 0%;
color: #FFF;
}
a {
text-decoration:none;
}
a p {
padding: 1em;
font-size: 1em;
margin: 0;
font-family: 'Domine', serif;
/*color: #E74C3C;*/
color: #fff;
}
h1 {
font-size: 4.5em;
font-weight: bold;
letter-spacing: -0.05em;
line-height: 1.5em;
text-transform: uppercase;
text-align: center;
margin: 0;
font-family: 'Domine', serif;
}
.item.line-reddit{
padding: 10px;
border-top: #F89406 8px solid;
}
.item.line-twitter{
padding: 10px;
border-top: #FDE3A7 8px solid;
}
.footer {
font-size: 1em;
color: #FFF;
margin: 0.5em;
}
.footer a {
color: #FFF;
text-decoration: underline;
font-weight: bold;
}
/* Configurate salvattore with media queries */
@media screen and (max-width: 450px) {
h1 {
font-size: 1.5em;
}
}
@media screen and (min-width: 451px) and (max-width: 700px) {
h1 {
font-size: 2.5em;
}
}
@media screen and (min-width: 701px) and (max-width: 850px) {
h1 {
font-size: 3.5em;
}
}