www.blitzw.in/style.css

55 lines
1.3 KiB
CSS
Raw Normal View History

2024-02-21 00:27:49 +00:00
/* The sauce of your page. Font size depends on browser settings for accessibility. */
2023-12-29 16:38:45 +00:00
body{
2024-02-10 22:10:23 +00:00
background-color: #21202b;
color: #bec1cd;
2024-05-15 13:43:51 +00:00
margin: 40px auto;
max-width: 650px;
line-height: 1.2;
font-family:"Segoe UI", Segoe, Tahoma, Geneva, sans-serif;
font-size: 18px;
padding: 0 8px;
2023-12-29 16:38:45 +00:00
}
2024-02-21 00:27:49 +00:00
2024-03-19 15:16:10 +00:00
/* Headers! I use the second largest headers because why not. */
2024-01-20 18:57:24 +00:00
h2{
2024-04-04 19:33:35 +00:00
border-bottom: 2px solid #735c73;
2024-02-11 17:52:21 +00:00
padding:2px;
2024-01-20 18:57:24 +00:00
}
2024-02-21 00:27:49 +00:00
/* Footer of each page, also changing font size depending on settings. */
2023-12-29 16:38:45 +00:00
.footer{
2024-05-15 13:33:03 +00:00
text-align:right;
2023-12-29 16:38:45 +00:00
font-size:75%;
}
2024-02-21 00:27:49 +00:00
2024-03-19 15:16:10 +00:00
/* Link colors and highlights! */
2023-12-29 16:38:45 +00:00
a{
2024-03-19 15:16:10 +00:00
color:#bbaad5;
2024-04-04 19:33:35 +00:00
border-bottom: 2px solid #bbaad5;
2023-12-29 16:38:45 +00:00
text-decoration:none;
}
2024-02-21 00:27:49 +00:00
/* Link hover! */
2023-12-29 16:38:45 +00:00
a:hover{
2024-03-19 15:16:10 +00:00
color:#e6cbe6;
2024-04-04 19:33:35 +00:00
border-bottom: 2px solid #e6cbe6;
2023-12-29 16:38:45 +00:00
text-decoration:none;
}
2024-02-21 00:27:49 +00:00
/* Manually sizing images for mobile accessibility! */
img {
max-width: 100%;
height: auto;
}
/* Image bullets that won't make a screen reader user groan in pain, because these properly show up as bullets! */
2023-12-29 16:38:45 +00:00
ul{
list-style-image: url("/img/bullet.jpg");
}
2024-02-11 16:36:06 +00:00
2024-02-21 00:28:33 +00:00
/* Selection color. It won't work on some browsers, but it not working doesn't interfere with your enjoyment of the site. */
2024-02-11 16:36:06 +00:00
::selection {
background: #a99a86;
2024-02-11 16:36:42 +00:00
color:black;
2024-02-11 16:36:06 +00:00
}