tsaibar/css/main.css
2024-09-08 23:38:18 +02:00

73 lines
No EOL
1.1 KiB
CSS

:root {
--black: #000501;
--white: #F9F9F9;
--yellow: #EFEA5A;
--green: #16DB93;
}
* {
box-sizing: border-box;
}
html, body {
padding: 0;
margin: 0;
width: 100vw;
height: 100vh;
overflow-x: hidden;
background-color: var(--black);
}
header {
background-color: var(--yellow);
color: var(--black);
font-size: 90px;
padding: 20px 0 20px 0;
text-align: center;
font-weight: 800;
position: relative;
font-family: 'Brush Script MT', cursive;
}
main {
border: 5px solid var(--yellow);
border-top: none;
color: var(--white);
padding: 42px;
font-family: 'Courier New', monospace;
}
header, main {
max-width: 1024px;
margin: auto;
}
main a, main a:visited {
color: var(--green);
text-decoration: none;
}
main a:hover {
border-bottom: 2px solid var(--green);
}
main address {
display: flex;
justify-content: space-around;
}
main ul {
list-style-type: '🤍 ';
}
main ul li {
padding: 2px 0 2px 0;
}
main section#socials {
line-height: 200%;
}
td {
padding: 5px;
}