watch-tfa/style.css

37 lines
491 B
CSS
Raw Normal View History

2024-04-23 12:51:54 +00:00
@media (prefers-color-scheme: dark){
2024-04-23 22:13:53 +00:00
body {
2024-04-23 22:19:41 +00:00
background:#000;
2024-04-23 22:20:56 +00:00
color: #FFFFFF;
2024-04-23 22:19:41 +00:00
}
2024-04-23 23:17:59 +00:00
a{
color: #3118ED;
}
2024-04-23 22:19:41 +00:00
}
@media (prefers-color-scheme: light){
body {
2024-04-23 22:20:56 +00:00
background:#FFFFFF;
2024-04-23 22:19:41 +00:00
color: #42;
}
2024-04-23 23:17:59 +00:00
a{
color: #920002;
}
2024-04-23 22:19:41 +00:00
}
2024-04-23 12:51:54 +00:00
2024-04-23 12:43:51 +00:00
body {
margin: 40px auto;
max-width: 650px;
2024-04-23 22:19:41 +00:00
line-height: 1.2;
2024-04-23 12:48:48 +00:00
font-family:"Segoe UI", Segoe, Tahoma, Geneva, sans-serif;
2024-04-23 12:43:51 +00:00
font-size: 18px;
padding: 0 8px;
}
2024-04-23 23:03:09 +00:00
.note {
padding:1rem 1rem 0 1rem;
2024-04-23 23:08:28 +00:00
border:2px solid red;
2024-04-23 23:03:09 +00:00
}
.notetitle {
fontweight:120%;
}