Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
306 changes: 305 additions & 1 deletion css/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,305 @@
/* Compile your LESS file! */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
* {
box-sizing: border-box;
}
html,
body {
height: 100%;
font-size: 62.5%;
}
h1 {
font-size: 4rem;
}
h2 {
font-size: 2.5rem;
}
h3 {
font-size: 2rem;
}
.container {
border: 1px solid black;
max-width: 800px;
margin: 0 auto;
line-height: 1.5;
font-size: 1.4rem;
padding-left: 30px;
padding-right: 30px;
}
header nav {
display: flex;
justify-content: flex-end;
margin: 20px 0;
}
@media (max-width: 500px) {
header nav {
justify-content: space-between;
}
}
header nav a {
text-decoration: none;
color: black;
margin-left: 30px;
}
@media (max-width: 500px) {
header nav a {
margin-left: 0;
}
}
header nav a:hover {
text-decoration: underline;
}
.top-content {
background: lavender;
padding: 40px 30px;
}
.top-content img {
width: 250px;
height: 100%;
}
@media (max-width: 500px) {
.top-content .img {
display: flex;
justify-content: center;
}
}
.top-content .name {
border-bottom: 1px solid lightgrey;
padding-bottom: 20px;
margin-bottom: 20px;
}
@media (max-width: 500px) {
.top-content .name {
display: none;
}
}
.top-content .mobile-name {
display: none;
}
@media (max-width: 500px) {
.top-content .mobile-name {
display: block;
text-align: center;
border-bottom: 1px solid lightgrey;
padding-bottom: 20px;
margin-bottom: 20px;
}
}
@media (max-width: 500px) {
.top-content .cta .cta-button {
display: flex;
justify-content: center;
}
}
@media (max-width: 500px) {
.top-content .cta p {
text-align: center;
}
}
.top-content .cta button {
margin-top: 10px;
color: white;
background: gray;
padding: 5px 10px;
font-size: 1.5rem;
}
@media (max-width: 500px) {
.top-content .cta button {
margin-top: 20px;
}
}
.middle-content {
display: flex;
justify-content: space-between;
margin: 20px 0;
}
@media (max-width: 500px) {
.middle-content {
display: block;
}
}
.middle-content .listen-up {
width: 48.5%;
}
@media (max-width: 500px) {
.middle-content .listen-up {
width: 100%;
}
}
.middle-content .stuff-good {
width: 48.5%;
}
@media (max-width: 500px) {
.middle-content .stuff-good {
width: 100%;
margin-top: 20px;
}
}
.middle-content .stuff-good p {
border-top: 1px solid lightgrey;
border-left: 1px solid lightgrey;
border-right: 1px solid lightgrey;
padding: 5px 10px;
}
.middle-content .stuff-good p:last-child {
border-bottom: 1px solid lightgrey;
}
.bottom-content table {
width: 100%;
margin-top: 5px;
}
.bottom-content table tr:nth-child(even) {
background-color: whitesmoke;
}
.bottom-content table tr:first-child {
border-bottom: 2px solid lightgrey;
}
.bottom-content table tr {
border-top: 1px solid lightgrey;
text-align: left;
padding: 50px;
}
.bottom-content table tr th {
font-weight: 700;
padding: 5px;
}
.bottom-content table tr td {
padding: 5px;
}
.bottom-content .contact {
margin-top: 20px;
}
footer {
text-align: center;
font-size: 1.2rem;
background: grey;
margin-top: 20px;
padding: 20px 0;
color: white;
}
Loading