-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
134 lines (119 loc) · 2.84 KB
/
Copy pathstyles.css
File metadata and controls
134 lines (119 loc) · 2.84 KB
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
124
125
126
127
128
129
130
131
132
133
134
/** reset.sass **/
html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
margin: 0;
padding: 0; }
table {
border-collapse: collapse;
border-spacing: 0; }
a {
outline: 0;
text-decoration: none; }
/** home.sass **/
body {
font-family: "freight-sans-pro", "Myriad Pro", "Myriad", "Helvetica", "Avenir", "Arial", sans-serif;
font-size: 15px;
-webkit-font-smoothing: antialiased; }
a {
color: #423f37; }
a:hover {
color: #d32626; }
ul {
list-style-type: none; }
header {
display: block;
position: absolute;
width: 20%;
border-right: 1px solid transparent;
text-align: center;
top: 0;
left: 0;
bottom: 0; }
header:after {
content: "";
position: absolute;
top: 60px;
bottom: 30%;
right: -1px;
width: 1px;
background-image: -webkit-linear-gradient(top, rgba(227, 224, 216, 0) 0, #e3e0d8 20%, #e3e0d8 80%, rgba(227, 224, 216, 0) 100%);
background-image: -moz-linear-gradient(top, rgba(227, 224, 216, 0) 0, #e3e0d8 20%, #e3e0d8 80%, rgba(227, 224, 216, 0) 100%);
background-image: -ms-linear-gradient(top, rgba(227, 224, 216, 0) 0, #e3e0d8 20%, #e3e0d8 80%, rgba(227, 224, 216, 0) 100%);
background-image: -o-linear-gradient(top, rgba(227, 224, 216, 0) 0, #e3e0d8 20%, #e3e0d8 80%, rgba(227, 224, 216, 0) 100%); }
header section {
position: absolute;
width: 130px;
left: 50%;
top: 120px;
text-align: center;
margin-left: -65px; }
header section img {
display: block;
margin-bottom: 18px; }
header section h1 {
text-transform: uppercase;
font-size: 17px;
margin: 0 0 4px 0;
color: #000;
font-weight: 700; }
header section h3 {
color: #423f37;
font-weight: 400;
font-size: 14px; }
header section .contact-info {
margin-top: 10px;
font-size: 21px; }
header section .contact-info a {
margin: 0 0.1em; }
article {
position: absolute;
left: 0;
top: 110px;
margin-left: 20%;
width: 80%;
overflow: hidden; }
article .lcol {
float: left;
margin-left: 6%; }
article .rcol {
float: left;
margin-left: 6%; }
article h3 {
font-size: 17px;
color: #423f37;
line-height: 30px;
height: 30px;
font-weight: 600; }
article h3 span {
font-size: 15px;
font-weight: normal; }
article h3 a {
color: #d32626; }
article section {
margin-bottom: 12px; }
@media (max-width: 790px) {
header:after {
display: none;
}
}
@media (max-width: 730px) {
#desktop-header {
display: none;
}
header section {
position: initial;
margin-left: 0;
margin-top: 15px;
}
#mobile-header {
margin-left: 50%;
}
article {
margin-left: 5%;
top: 280px;
}
}
@media (min-width: 730px) {
#mobile-header {
display: none;
}
}