-
Notifications
You must be signed in to change notification settings - Fork 0
/
antigua.scss
111 lines (102 loc) · 1.74 KB
/
antigua.scss
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
---
---
//@import "_reset.scss";
$sepia: rgb(222, 120, 45);
$highlight: #bada55;
$bg: #ececec;
@mixin georgia{
font-family: Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
}
body{
@include georgia;
font-size:200%;
line-height:1em;
background-color: #fff;
}
.wrapper{
width: 640px;
padding:0 1em 0 1em;
margin: 0 auto;
}
p{
line-height:1.45em;
}
a {
font-weight:bold;
color:$sepia;
text-decoration:none;
&:hover{ color:$highlight; }
}
.masthead{
h1{
@include georgia;
font-family:Baskerville;
font-weight:bold;
font-size:250%;
text-align:center;
margin:0 0 0.15em 0;
a, a:visited{ color:black; }
}
p {
@include georgia;
font-style:italic;
font-size:0.7em;
margin:0.3em 0 1.4em 0;
text-align:left;
text-transform:none;
color:rgb(150,150,150);
}
.nav{
font-family: gill sans;
font-weight:bold;
font-size:50%;
color:white;
background-color: $sepia;
width:100%;
max-width:100%;
list-style:none;
text-align:center;
a{
text-transform: uppercase;
display:inline;
margin:0 0.3em;
color:white;
&:hover{ color:#bada55; }
}
}
}
/* lead paragraph */
.post{
p {
font-size:1.5em;
margin:0 0 1.2em 0;
}
p ~ p { font-size: 1em; }
h1{
font-size:200%;
font-family: Gill sans;
font-weight:bold;
letter-spacing:-0.1em;
line-height:0.8em;
margin-top:1em;
margin-bottom:0.8em;
text-transform: uppercase;
}
strong{ text-transform: uppercase; }
em{ font-style:italic; }
}
/*blockquote*/
blockquote{
margin-left:0.4em;
padding-left: 0.5em;
border-left:8px solid $sepia;
p{
font-size:1em;
}
}
/*Image*/
img{
//max-width:640px;
width:100%;
border-bottom: 0.5em solid $sepia;
}