greg.everydayimshuflin.com/style.css

75 lines
988 B
CSS
Raw Normal View History

2024-10-18 17:31:00 -07:00
* {
box-sizing: border-box;
2021-01-14 02:05:44 -08:00
}
2024-10-18 17:31:00 -07:00
body {
padding: 0em 0.5em;
background-color:#2B2B4D;
color: white;
font-family: "Fira Sans", sans-serif;
font-size: 20px;
line-height: 1.5;
2021-02-21 22:52:51 -08:00
2024-10-18 17:31:00 -07:00
display: flex;
flex-direction: column;
align-items: center;
2023-03-07 16:53:21 -08:00
}
2021-01-14 02:05:44 -08:00
2024-10-18 17:31:00 -07:00
.container {
width: 100%;
max-width: 961px;
display: flex;
flex-direction: column;
align-items: center;
2023-01-27 14:58:18 -08:00
}
2024-10-18 17:31:00 -07:00
h1 {
text-align: center;
margin: 0;
2021-01-14 02:05:44 -08:00
}
2024-10-18 17:31:00 -07:00
code.nostrPubkey {
display: none;
2021-01-14 02:05:44 -08:00
}
a {
2022-09-29 15:36:43 -07:00
color: #f74848;
2021-01-14 02:05:44 -08:00
font-weight:bolder;
}
a:visited {
2022-09-29 15:36:43 -07:00
color:#f74848;
2021-01-14 02:05:44 -08:00
}
a.codeLink {
color:#31E631;
font-weight:normal;
}
a.emailLink {
color:#31E631;
font-family: "monospace";
text-decoration: none;
}
2024-10-18 17:31:00 -07:00
.photo {
width: 100%;
}
.photo img {
width: 100%;
}
/* Desktop */
@media only screen and (min-width: 961px) {
code.nostrPubkey {
display: revert;
}
.photo {
float: right;
width: 400px;
margin: 1em;
}
}