Skip to content

Instantly share code, notes, and snippets.

@Spesm
Created October 4, 2018 16:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Spesm/cc6f11ca3c9b5f2155f68063085396f7 to your computer and use it in GitHub Desktop.
Save Spesm/cc6f11ca3c9b5f2155f68063085396f7 to your computer and use it in GitHub Desktop.
/* * { border: 1px solid red; } */
* { box-sizing: border-box; }
.left {
float: left;
}
.right {
float: right;
}
nav {
position: fixed;
width: 100% !important;
top: 0;
left: 0;
background-color: #522b74;
padding: 20px;
}
nav a:hover {
color: #0ff;
text-decoration: none;
}
nav a {
color: #fff;
text-decoration: none;
transition: color 800ms;
-webkit-transition: color 800ms;
}
.right a {
padding-left: 20px;
}
.content {
padding-top: 50px;
}
.container {
margin: 0 auto;
width: 80%;
}
.header h1 {
text-align: center;
}
.column {
display: inline-block;
float: left;
width: 33.33333333333333%;
}
.image img {
width: 100%;
}
.main-text {
padding-top: 20px;
padding-bottom: 20px;
margin-bottom: 500px;
clear: both;
}
.intro,
.skill{
padding: 0 20px 144px 20px;
}
#skill-list {
margin-left: 50px
}
/* Typography */
h1,
h2,
h3 {
font-family: Tahoma, Helvetica, Arial, sans-serif;
}
p,
li {
font-family: Georgia, Perpetua, Palatino, serif;
}
.intro p {
font-family: Tahoma, Helvetica, Arial, sans-serif;
font-size: 3em;
font-weight: 100;
margin-block-start: 0;
}
.skill h3 {
text-align: center;
text-transform: uppercase;
}
.header h1 {
font-family: Audiowide, Tahoma, Helvetica, sans-serif;
}
/* Color */
body {
background-color: #fffeea;
color: #34495e
}
.skill {
background-color: #5ad4c2;
color: #fff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment