56 lines
1022 B
CSS
56 lines
1022 B
CSS
|
|
body {
|
|
margin: 3em 20% 3em 20%;
|
|
background: #181818;
|
|
max-width: 50em;
|
|
margin-inline: auto;
|
|
color: white;
|
|
font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
line-height: 1.5;
|
|
font-size: 18px;
|
|
margin-top: 6rem;
|
|
}
|
|
|
|
a, a:link {
|
|
color: cyan;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a:visited {
|
|
color: magenta;
|
|
}
|
|
|
|
table {
|
|
border: 1px solid white;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 100%;
|
|
margin-block: 2.5em;
|
|
}
|
|
td {
|
|
border: 1px solid white;
|
|
}
|
|
|
|
img#nocloud {
|
|
width: 100%;
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-bottom: 3.5rem;
|
|
}
|
|
|
|
img#vibing {
|
|
width: 74px;
|
|
display: block;
|
|
margin-left: auto; margin-right: auto;
|
|
}
|
|
|
|
hr {
|
|
border: none;
|
|
display: block;
|
|
height: 1px;
|
|
width: 100%;
|
|
background: rgb(0,255,240);
|
|
background: linear-gradient(270deg, rgba(0,255,240,1) 0%, rgba(109,67,134,1) 56%, rgba(50,0,65,1) 100%);
|
|
}
|