tcp-wiki/assets/main.css

70 lines
1.1 KiB
CSS
Raw Normal View History

2023-04-02 13:06:15 -07:00
/* assets/main.css */
body {
2023-04-02 13:17:56 -07:00
font-family: 'Courier New', Courier, monospace;
2023-04-02 13:06:15 -07:00
line-height: 1.6;
margin: 20px;
background-color: #131313;
color: #14ee00;
}
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
}
a {
color: #059ce2;
text-decoration: none;
}
a:hover {
color: #f700ff;
}
header {
padding: 1em;
2023-04-02 13:17:56 -07:00
background-color: #333;
2023-04-02 13:06:15 -07:00
border-bottom: 1px solid #555;
2023-04-02 13:17:56 -07:00
display: flex;
justify-content: space-between;
align-items: center;
2023-04-02 13:06:15 -07:00
}
header h1 {
margin-right: 1em;
2023-04-02 13:17:56 -07:00
font-size: 1.5em;
2023-04-02 13:06:15 -07:00
}
nav ul {
list-style: none;
padding: 0;
2023-04-02 13:17:56 -07:00
margin: 0;
2023-04-02 13:06:15 -07:00
}
nav ul li {
display: inline;
margin-right: 1em;
2023-04-02 13:17:56 -07:00
font-size: 1.1em;
2023-04-02 13:06:15 -07:00
}
pre {
background-color: #5555;
padding: 1em;
border-radius: 3px;
}
2023-04-02 13:17:56 -07:00
/* Button styles */
nav ul li a {
display: inline-block;
padding: 8px 16px;
border: 1px solid #14ee00;
border-radius: 3px;
background-color: transparent;
font-size: 1.1em;
transition: background-color 0.3s, color 0.3s;
}
2023-04-02 13:06:15 -07:00
2023-04-02 13:17:56 -07:00
nav ul li a:hover {
background-color: #14ee00;
color: #131313;
}