50 lines
577 B
CSS
50 lines
577 B
CSS
/* Main styles for resist.is */
|
|
body {
|
|
background-color: black;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
p,h3 {
|
|
color: white;
|
|
}
|
|
|
|
h2 {
|
|
color: red;
|
|
}
|
|
|
|
div {
|
|
max-width: 700px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.main-container {
|
|
text-align: center;
|
|
}
|
|
|
|
.content-wrapper {
|
|
text-align: center;
|
|
}
|
|
|
|
.bold-text {
|
|
font-weight: bold;
|
|
margin: 0;
|
|
}
|
|
|
|
.no-margin {
|
|
margin: 0;
|
|
}
|
|
|
|
.link {
|
|
text-align: center;
|
|
color: royalblue;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|