whois/static/css/styles.css

61 lines
884 B
CSS
Raw Normal View History

2025-01-05 19:39:13 -05:00
@import "/static/css/colors.css";
@import "/static/css/form.css";
@import "/static/css/table.css";
@import "/static/css/chat.css";
@font-face {
font-family: 'GeistMono';
src: url('/static/fonts/GeistMono-Medium.ttf') format('truetype');
}
* {
box-sizing: border-box;
font-family: GeistMono;
}
html {
margin: 0;
padding: 0;
color: var(--text-color);
}
body {
background-color: var(--background-color);
min-height: 100vh;
}
hr {
border: 0;
border-top: 1px solid var(--text-color);
margin: 20px 0;
}
.container {
max-width: 1600px;
margin: auto;
background-color: var(--container-bg);
padding: 1rem;
}
a {
color: var(--link-color);
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
.info {
margin-bottom: 1rem;
max-width: 600px;
transition: opacity 0.3s;
}
.info:hover {
opacity: 0.8;
}