63 lines
834 B
CSS
63 lines
834 B
CSS
@import url(https://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic,700italic);
|
|
|
|
h1 {
|
|
font-family: Ubuntu;
|
|
}
|
|
|
|
@media (min-width: 600px) {
|
|
header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
|
|
#selfPhoto {
|
|
margin-top: 20px;
|
|
margin-right: 30px;
|
|
}
|
|
|
|
@media (min-width: 80rem) {
|
|
#main {
|
|
margin-left:auto;
|
|
margin-right:auto;
|
|
width:960px;
|
|
}
|
|
}
|
|
|
|
section.important-links {
|
|
font-size: large;
|
|
}
|
|
|
|
body {
|
|
background-color:#2B2B4D;
|
|
color: white;
|
|
font-family: "Fira Sans", sans-serif;
|
|
}
|
|
|
|
b {
|
|
font-weight:bolder;
|
|
}
|
|
|
|
a {
|
|
color: #f74848;
|
|
font-weight:bolder;
|
|
}
|
|
|
|
a:visited {
|
|
color:#f74848;
|
|
}
|
|
|
|
li {
|
|
margin-bottom:10px;
|
|
}
|
|
a.codeLink {
|
|
color:#31E631;
|
|
font-weight:normal;
|
|
}
|
|
|
|
a.emailLink {
|
|
color:#31E631;
|
|
font-family: "monospace";
|
|
text-decoration: none;
|
|
}
|