62 lines
792 B
CSS
62 lines
792 B
CSS
body {
|
|
font-family: "Roboto";
|
|
font-family: monospace;
|
|
text-align: justify;
|
|
background-color: #373636;
|
|
color:whitesmoke;
|
|
font-size: 1.15em;
|
|
}
|
|
ul {
|
|
width: 55%;
|
|
display: block;
|
|
}
|
|
ol {
|
|
width: 55%;
|
|
display: block;
|
|
}
|
|
li {
|
|
margin-top: 1%;
|
|
}
|
|
p {
|
|
max-width: 90%;
|
|
margin-top: 1%;
|
|
margin-left: 3%;
|
|
margin-right: 3%;
|
|
}
|
|
img {
|
|
float: left;
|
|
top: 5%;
|
|
left: 5%;
|
|
width: 22%;
|
|
display: inline;
|
|
}
|
|
.inline {
|
|
display: inline;
|
|
}
|
|
.link-button:focus {
|
|
outline: none;
|
|
}
|
|
.link-button:active {
|
|
color:red;
|
|
}
|
|
code {
|
|
font-family: monospace;
|
|
border-radius: 5%;
|
|
padding: 1%;
|
|
border-color: darkgray;
|
|
border-style: dotted;
|
|
font-size: .9em;
|
|
}
|
|
a {
|
|
color: #C6D9FE;
|
|
padding: 1%;
|
|
}
|
|
ul li {
|
|
color: #C6D9FE;
|
|
}
|
|
iframe {
|
|
background: aliceblue;
|
|
border-radius: 15%;
|
|
margin: 2%;
|
|
}
|