-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbigblog.css
executable file
·101 lines (83 loc) · 1.96 KB
/
bigblog.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
/**
* @file
* Sub-theme styles should be added to this file.
*
* Rename this file to the name of your theme and include it in your .info
* file. Place it in the sub-theme directory.
*/
/* Common styles (all widths) */
@font-face {
font-family: 'LeagueGothicRegular';
src: url('League_Gothic-webfont.eot');
src: url('League_Gothic-webfont.eot?#iefix') format('embedded-opentype'),
url('League_Gothic-webfont.woff') format('woff'),
url('League_Gothic-webfont.ttf') format('truetype'),
url('League_Gothic-webfont.svg#LeagueGothicRegular') format('svg');
font-weight: normal;
font-style: normal;
}
h1 {
font: 60px/80px 'LeagueGothicRegular', Arial, sans-serif;letter-spacing: 0;
text-transform: uppercase;
}
h2 {
color: #111;
padding: 0.3em;
border-bottom-style: solid;
border-color: #66d600;
border-width: 3px;
}
.content {
font-size: 21px;
}
#site-menu {
list-style: none;
float: right;
padding-top: 0.5em;
color: green;
}
#site-menu li {
float: left;
min-width: 4em;
padding-right: 0.5 em;
margin-right: 0.5 em;
text-align: center;
}
.topnav li a {
text-decoration: none;
}
.topnav li a:hover {
padding-bottom: 0.5em;
border-bottom-style: solid;
border-color: #66d600;
border-width: 3px;
}
#site-slogan {
font-style: italic;
font-size: 3em;
text-align: center;
}
#branding {
padding-bottom: 0.5em;
border-bottom-style: solid;
border-color: #66d600;
border-width: 3px;
margin-bottom: 1em;
}
/* End Common styles */
/* Mobile styles */
@media screen and (max-width: 480px) {
#logo {
text-align: center;
}
h1 {
font-size: 48px;
line-height: 54px;
}
} /* End Mobile styles */
/* Tablet styles */
@media screen and (min-width: 481px) and (max-width: 840px) {
} /* End Tablet styles */
/* Desktop styles */
@media screen and (min-width: 841px) {
} /* End Desktop styles */