-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·130 lines (95 loc) · 2.27 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
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
/*
Theme Name: BootstrapWP
Theme URI: http://bootstrapwp.rachelbaker.me
Author: Rachel Baker
Author URI: http://www.rachelbaker.me
Description: A semantic HTML/CSS framework base theme for WordPress Developers ported from Twitter Bootstrap
Version: 1.0
=======
License: GNU General Public License
License URI: license.txt
This theme, like WordPress, is licensed under the GPL.
The development of BootstrapWP was powered by Sublime Text 2 and lots of Diet Coke.
Use this starter theme to make something cool. Please share the results with me via Twitter @rachelbaker.
Enjoy!
*/
/********************************************************
Comfortable with LESS? Check out the /assets/css/less folder where the bootstrapwp.less file is the master complier
Not comfortable with LESS? You can override the compiled bootstrapwp.css file by adding custom styles here.
-------------------------------------------------- */
@font-face
{
font-family: HelveticaNeueLight;
src: url(assets/fonts/Helvetica-Neue-Font/HelveticaNeue.ttf);
}
body {
font-family: 'HelveticaNeueLight' !important;
}
/* HEADER STYLES */
header .blog-name {
margin-top: 50px;
text-transform: uppercase;
transition: color 0.25s ease-in;
-webkit-transition: color 0.25s ease-in;
}
header .blog-name:hover a {
color: #307EA9;
}
header .blog-name:hover b {
color: #444;
}
header .blog-name a {
font-size: 44px;
color: #444;
font-weight: normal;
}
header .blog-name b {
color: #307EA9;
font-weight: bold;
}
header li > a {
font-size: 25px;
}
.index-hero {
width: 100%;
height: 200px;
background-position: 0% 35%;
margin: 0px 0px 20px 0px;
box-shadow: inset 0 0 15px rgba(0,0,0,.5);
opacity:0.85;
filter:alpha(opacity=40); /* For IE8 and earlier */
}
/* INDEX STYLES */
.listing {
margin: 10px 0px 10px 0px;
}
.listing li {
padding-top: 5px;
padding-bottom: 5px;
list-style-type: none;
}
.listing a {
font-size: 22px;
}
a {
text-decoration: none !important;
}
/* SINGLE POST & PAGE STYLE */
article header {
text-align: right;
}
.form-allowed-tags {
display: none;
}
article.post section {
margin-top: -20px;
font-size: 20px;
line-height: 30px;
}
article.post section p {
margin-top: 30px;
}
article.post section li {
margin-top: 5px;
line-height: inherit; /* Override Bootstrap li style */
}