-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.scss
178 lines (158 loc) · 2.97 KB
/
main.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
---
# Only the main Sass file needs front matter (the dashes are enough)
---
@import "minima";
/***********************************
Tweaks to minima
***********************************/
body {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
color: #333;
}
.site-title {
color: #777 !important;
font-size: 18px;
font-weight: unset;
letter-spacing: unset;
line-height: 20px;
padding: 17px;
text-decoration: none;
text-transform: uppercase;
}
.site-nav {
.page-link {
color: #777;
display: inline-block;
line-height: 56px;
padding-left: 15px;
padding-right: 15px;
}
.page-link.active {
background-color: #e7e7e7;
color: #555;
}
}
.site-nav .page-link:not(:last-child) {
margin: 0;
}
.post-header {
margin-bottom: 10px;
}
.site-header {
background-color: #f8f8f8;
border-bottom-width: 5px;
}
.site-footer {
background-color: #4f4f4f;
color: #ccc;
border-top: 5px solid #e7e7e7;
.wrapper {
text-align: center;
}
.social-media-list {
margin-bottom: 0;
li {
display: inline-block;
}
li + li {
padding-top: 0;
}
}
.svg-icon {
fill: #337ab7;
transform: scale(2.5);
margin-left: 25px;
margin-right: 25px;
}
.svg-icon:hover {
fill: #23527c;
}
.username {
display: none;
}
}
.post-title {
font-size: 36px;
}
/* formatting for headers / titles / paragraphs */
h1, h2, h3, h4, h5, h6 {
font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif !important;
}
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #e7e7e7;
}
/***********************************
Landing page styles
- used on layout `default-landing`
- only used on `index.md`
***********************************/
.landing-page-content {
padding-top: 0;
}
.landing-wrapper {
max-width: 100%;
padding: 0;
}
.landing-portrait-jumbo {
background-color: #000;
text-align: center;
padding: 0px;
margin-bottom: 0px;
h1 {
color: #fff;
font-size: 24pt;
margin-top: 15px;
}
border-bottom: 5px solid #337ab7;
margin-bottom: 20px;
}
.landing-intro {
text-align: center;
font-size: 14pt;
}
/***********************************
About page styles
***********************************/
table#about-me {
border: 0px;
padding: 0 15px;
td {
border: 0;
}
margin-bottom: 0;
}
.about-pictures {
text-align: center;
width: 100%;
img {
border: 1px solid #e7e7e7;
margin: 5px;
}
}
.badge {
background-image: url(about-badges.png);
width: 116px;
height: 181px;
margin: 0px;
border: 1px solid #e7e7e7;
}
.badge-godaddy {
background-position: 0px 0px;
}
.badge-intel {
background-position: -116px 0px;
}
@media (min-width: 800px) {
.badge { display: block; }
.about-pictures { display: inline-block; }
}
@media (max-width: 799px) {
.badge { display: none !important; }
.about-pictures { display: none !important; }
.media-left,
.media-right { padding: 0 !important; }
}