witten
/
luminotes
Archived
1
0
Fork 0
This repository has been archived on 2023-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
luminotes/static/css/note.css

96 lines
1.4 KiB
CSS

body {
padding: 1em;
font-size: 100%;
line-height: 140%;
}
a:hover {
color: #ff6600;
}
h3 {
margin-bottom: 1em;
}
.button {
border-style: outset;
border-width: 0px;
background-color: #d0e0f0;
outline: none;
-moz-border-radius: 0.5em;
-webkit-border-radius: 0.5em;
}
.button:hover {
background-color: #ffcc66;
}
.text_field {
margin-top: 0.25em;
padding: 0.25em;
border: #999999 1px solid;
-moz-border-radius: 0.5em;
-webkit-border-radius: 0.5em;
}
.small_text {
font-size: 85%;
line-height: 1em;
}
ul {
list-style-type: disc;
}
ul li {
margin-top: 0.5em;
}
ol li {
margin-top: 0.5em;
}
#take_a_tour {
display: block;
float: left;
border: 0;
width: 100px;
height: 40px;
background-image: url(/static/images/take_a_tour.png);
background-repeat: no-repeat;
}
#take_a_tour:hover {
background-image: url(/static/images/take_a_tour_hover.png);
}
#take_a_tour_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/take_a_tour_hover.png);
}
#try_it_out {
display: block;
float: left;
border: 0;
width: 100px;
height: 40px;
background-image: url(/static/images/try_it_out.png);
background-repeat: no-repeat;
}
#try_it_out:hover {
background-image: url(/static/images/try_it_out_hover.png);
}
#try_it_out_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/try_it_out_hover.png);
}
.display_none {
display: none;
}