This repository has been archived on 2022-05-01. You can view files and clone it, but cannot push or open issues or pull requests.
a2s/src/styles.css

47 lines
747 B
CSS

:root {
--font-family: 'Iosevka SS05';
--font-size: 1.06em;
}
body {
font-family: var(--font-family);
line-height: 1.3rem;
font-size: var(--font-size);
margin: 0;
}
.flag { margin-bottom: 20px; }
.flag p {
margin: 0; padding: 0;
height: 10px;
}
.flag #w { background-color: #ffffff; }
.flag #b { background-color: #d52b1e; }
.flag #r { background-color: #0039a6; }
.container {
max-width: 860px;
margin: 0 auto;
}
a { color: navy; }
footer { border-top: 1px solid #999; }
section { border-bottom: 1px solid #ffffff; }
.project-item {
border-left: 1px solid navy;
margin-left: 24px;
margin-top: 24px;
padding: 8px;
}
.project-item h3 { margin-top: 0; }
.text-center { text-align: center; }
.fw-bold { font-weight: bold; }