1
0
Fork 0
generalized-lut/assets/css/style.css

102 lines
2.3 KiB
CSS

/* A Linux- and Windows-friendly sans-serif font stack: http://prospects.mhurrell.co.uk/post/updating-the-helvetica-font-stack */
body {font: 13px Helmet, Freesans, sans-serif;}
/* Using local fonts? Check out Font Squirrel's webfont generator: http://www.fontsquirrel.com/tools/webfont-generator */
/* We like off-black for text. */
body, select, input, textarea {color: #333;}
a {color: #03f;}
a:hover {color: #69f;}
/* Custom text-selection colors (remove any text shadows: http://twitter.com/miketaylr/status/12228805301) */
::-moz-selection{background: #fcd700; color: #fff; text-shadow: none;}
::selection {background: #fcd700; color: #fff; text-shadow: none;}
/* j.mp/webkit-tap-highlight-color */
a:link {-webkit-tap-highlight-color: #fcd700;}
ins {background-color: #fcd700; color: #000; text-decoration: none;}
mark {background-color: #fcd700; color: #000; font-style: italic; font-weight: bold;}
/* Mozilla dosen't style placeholders by default */
input:-moz-placeholder { color:#a9a9a9; }
textarea:-moz-placeholder { color:#a9a9a9; }
/* let's give blockquotes *some* default styling, because unstyled blockquotes are dangerous */
blockquote {padding: 16px; background: #eee;}
h1, h2 {
font-size: 1.3em;
margin-bottom: 20px;
}
img, canvas {
margin: 0 20px 20px 0;
border: 1px solid #ccc;
position: relative;
display: inline-block;
}
.imglabel {
display: block;
position: relative;
}
.imglabel span {
position: absolute;
bottom: 24px;
left: 1px;
background-color: rgba(40,40,40,0.4);
color: white;
padding: 2px 6px;
}
.wrapper {
padding: 20px;
}
#canvas {
display: none;
}
img {
zoom: 50%;
width: 1402px;
height: auto;
max-width: 100%;
min-height: 100px;
}
.textureselect, .calcgrading {
display: inline-block;
color: white;
background-color: #666;
border-radius: 4px;
padding: 6px 14px;
text-decoration: none;
margin-right: 8px;
margin-bottom: 8px;
font-size: 1.1em;
}
.textureselect:hover, .textureselect.active, .calcgrading:hover {
background-color: #999;
color: white;
}
/* Media queries
-------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
}
/* Print styles
-------------------------------------------------------------------------------*/
@media print {
}