cloud.csclub.uwaterloo.ca/themes/csclub/static/css/main.css

102 lines
1.3 KiB
CSS

body {
font-family: sans-serif;
font-size: 14px;
}
body > header {
display: flex;
justify-content: center;
padding: 15px 0;
}
body > header,
body > nav,
.content-wrapper,
body > footer {
max-width: 100%;
width: 920px;
margin: 0 auto;
}
body > nav {
background: #215498;
border-radius: 4px;
background-clip: border-box;
}
body > nav ul {
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
}
body > nav li {
float: left;
}
body > nav a {
display: inline-block;
color: white;
text-decoration: none;
padding: 10px;
}
body > nav a:hover,
body > nav .active a {
text-decoration: underline;
}
body > nav ul li:first-child a {
font-weight: bold;
}
.uw_logo {
width: 250px;
}
.csc_logo {
height: 100px;
}
body > footer {
font-size: 0.9em;
text-align: center;
color: #444;
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid #ccc;
}
a {
color: #215499;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
p, li {
line-height: 1.4em;
}
.highlight, code {
background: #eee;
border-radius: 6px;
}
code {
padding: 0px 6px;
}
.highlight {
padding: 4px 10px;
border: 1px solid #aaa;
}
.highlight .nv { color: green; }
.highlight .nb { color: #aa0000; }
.highlight .o { color: #0000aa; }