48 lines
743 B
CSS
48 lines
743 B
CSS
|
|
body {
|
|
margin: 3em 20% 3em 20%;
|
|
background: #9bf2dc;
|
|
color: white;
|
|
font-family: helvetica;
|
|
}
|
|
|
|
a, a:link {
|
|
color: cyan;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a:visited {
|
|
color: magenta;
|
|
}
|
|
|
|
table {
|
|
border: 1px solid white;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 90%;
|
|
}
|
|
td {
|
|
border: 1px solid white;
|
|
}
|
|
|
|
img#nocloud {
|
|
width: 736px;
|
|
display: block;
|
|
margin-left: auto; margin-right: auto;
|
|
}
|
|
|
|
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%);
|
|
}
|