greg.everydayimshuflin.com/style-mobile.css
2024-10-16 01:48:23 -07:00

55 lines
706 B
CSS

* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color:#2B2B4D;
color: white;
font-family: "Fira Sans", sans-serif;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
header {
text-align: center;
width:100%;
}
header .links {
width: 80%;
text-align: start;
padding-left: 10%;
padding-top: 1em;
}
a {
color: #f74848;
font-weight:bolder;
}
a:visited {
color:#f74848;
}
a.codeLink {
color:#31E631;
font-weight:normal;
}
a.emailLink {
color:#31E631;
font-family: "monospace";
text-decoration: none;
}
.photo img {
width: 100%;
}
/* Desktop */
@media only screen and (min-width: 961px) {
}