Files
havox/old/style.css
2026-03-10 21:09:28 +00:00

112 lines
1.8 KiB
CSS

@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
box-sizing: border-box; }
html, body {
font-family: "Roboto", sans-serif;
background: #eceff4;
padding: 80px 30px 30px;
color: #444;
height: 100%; }
ol, ul {
margin: 0 0 50px 0; }
ul {
position: relative;
width: 75%;
margin: 100px auto 0;
padding: 10px;
box-sizing: border-box; }
ul li {
display: flex;
background: red; }
h3 {
color: black;
font-size: 48px; }
h1 {
font-weight: bold;
color: black; }
p {
line-height: 1.6em;
margin-bottom: 10px;
font-size: 20px;
padding: 0; }
p:last-child {
margin-bottom: 40px; }
code {
background: #f8f8f8;
color: #d64f9b;
border: 1px solid #eee;
padding: 2px;
border-radius: 3px; }
a {
font-size: 22px;
font-weight: bold;
color: #88c0d0;
text-decoration: none;
transition: all 200ms; }
a:hover, a:focus {
color: #ebcb8b; }
article {
margin-bottom: 50px; }
article .margin {
margin-bottom: 100vh; }
nav {
display: flex;
width: 100%;
top: 0;
left: 0;
background: #3b4252;
position: fixed;
padding: 30px; }
nav a {
display: inline-flex;
padding: 20px 30px;
color: #eceff4;
text-decoration: none; }
nav a:hover, nav a:focus {
color: #ebcb8b; }
nav a.active {
color: #88c0d0; }
table {
text-align: center;
background-color: #3b4252;
color: #eceff4;
width: 75%;
align-self: center;
border: 1px solid #8fbcbb;
border-collapse: collapse;
position: absolute;
left: 50%;
transform: translate(-50%, 0%); }
td {
border: 1px solid #8fbcbb;
padding: 10px; }
td a {
font-size: 16px;
text-decoration: none;
color: #eceff4; }
.tutName {
font-weight: bold;
color: #8fbcbb;
font-size: 20px; }
.tutName:hover {
color: #ebcb8b; }
.p {
padding: 50px; }
/*# sourceMappingURL=style.css.map */