muse/static/main.css

65 lines
960 B
CSS

body {
font-family : Open Sans, Arial;
font-size : 20px;
color : #eee;
background-color: #222;
margin : 0em auto;
padding : 25px;
line-height : 1.4;
}
a {
color: #7af;
align-items: center;
text-decoration: none;
}
a:hover {
color: #77f;
}
img.icon {
margin-right: 5px;
vertical-align: middle;
height: 20px;
}
input,
button {
background-color: #333;
border-radius: 4px;
border: none;
outline: none;
color: inherit;
padding: 10px;
}
input[type=button],
input[type=submit],
button {
cursor: pointer;
}
input[type=button]:hover,
input[type=submit]:hover,
button:hover {
background-color: #444;
}
input[type=button]:active,
input[type=submit]:active,
button:active {
box-shadow: inset 0px 0px 2px #aaa;
}
input[type=button]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
border: 0;
}
input[type=text] {
border: 1px solid #555;
}
hr {
border: 1px solid #555;
margin: 20px 0px;
}