vodoraslo.xyz/new-site/public/style.css

55 lines
872 B
CSS
Raw Normal View History

2022-12-17 07:30:26 +01:00
body {
font-family: sans-serif ;
2022-12-17 17:15:37 +01:00
background: #272727 ;
/* color: rgb(143, 185, 58) ; */
color: rgb(250, 247, 247) ;
2022-12-17 07:30:26 +01:00
}
main {
max-width: 800px ;
margin: auto ;
}
img {
max-width: 100% ;
}
header h1 {
text-align: center ;
}
footer {
text-align: center ;
clear: both ;
}
/* For TAGLIST.HTML */
.taglist {
text-align: center ;
clear: both ;
}
/* For NEXTPREV.HTML */
#nextprev {
/* The container for both the previous and next articles. */
}
#prevart {
float: left ;
text-align: left ;
}
#nextart {
float: right ;
text-align: right ;
}
#nextart,#prevart {
max-width: 33% ;
}
2022-12-17 17:15:37 +01:00
a { text-decoration: none; color:cyan } /* Globally */
/* Each state */
a:visited { text-decoration: none; color:cyan; }
a:hover { text-decoration: none; color:cyan; }
a:focus { text-decoration: none; color:yellow; }
a:hover, a:active { text-decoration: none; color:yellow }