-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (75 loc) · 1.24 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
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
/* BASIC*/
* {
margin: 0;
padding: 0;
}
body {
background: #000;
color: #fff;
}
/* LAYOUT */
/* The width and height of "wrapper", "upper-left", "upper-right"
and "bottom" needs to be changed in order to match your monitor's resolution */
#wrapper {
width: 750px;
height: 1300px;
margin: 0 auto;
}
#upper-left {
width: 325px;
margin: 50px 50px 0 0;
height: 1150px;
float: left;
text-align: center;
}
#upper-right {
width: 340px;
height: 1050px;
margin: 150px 35px 0 0;
float: left;
text-align: right;
}
#bottom {
width: 550px;
height: 100px;
margin: 0 100px 0 100px;
clear: both;
background: url(bg.gif) repeat-x;
text-align: center;
}
#meteo {
margin: 150px 35px 0 0;
float: right;
text-align: right;
}
/* TEXT */
h1 {
font-family: 'Roboto', sans-serif;
font-size: 102px;
font-weight: 300;
line-height: 102px;
}
h2 {
font-family: 'Roboto', sans-serif;
font-size: 24px;
font-weight: 300;
}
h2.smaller {
font-size: 22px;
letter-spacing: 1px;
}
h3 {
font-family: 'Roboto', sans-serif;
font-size: 42px;
font-weight: 300;
padding: 20px 0 0 0;
}
p {
font-family: 'Roboto', sans-serif;
font-size: 14px;
font-weight: 300;
}
p.date {
font-size: 12px;
font-weight: 600;
}