factor/basis/help/html/stylesheet.css

93 lines
1.2 KiB
CSS
Raw Normal View History

html {
2020-02-17 17:50:48 -05:00
box-sizing: border-box;
}
*, *:before, *:after {
2020-02-17 17:50:48 -05:00
box-sizing: inherit;
}
a, .link { color: #104e8b; }
a:link, a:visited, a:active, .link { text-decoration: none; }
a:hover, .link:hover { text-decoration: underline; }
body {
2020-02-27 19:08:33 -05:00
margin: 0;
font-family: sans-serif;
2020-02-27 19:49:48 -05:00
line-height: 150%;
}
2020-02-14 00:43:24 -05:00
input {
border: 1px solid #999999;
border-radius: 3px;
2020-05-22 13:03:39 -04:00
font-size: 1.0em;
}
input[type=text] {
width: 200px;
2020-02-14 00:43:24 -05:00
}
2020-02-15 01:31:12 -05:00
img {
vertical-align: middle;
}
2020-02-17 17:50:48 -05:00
table {
border-collapse: collapse;
margin-top: 5px;
margin-bottom: 5px;
2020-02-17 17:50:48 -05:00
}
tr:hover {
background-color: #f5f5f5;
}
.navbar {
margin: 0;
padding: 15px;
padding-top: 10px;
padding-bottom: 10px;
line-height: 150%;
border-bottom: 1px solid #ccc;
background-color: #f5f5f5;
}
2020-02-14 00:43:24 -05:00
.navbar a {
margin-right: 10px;
2020-02-14 00:43:24 -05:00
}
.navbar form a {
margin-left: 10px;
font-size: 1.0em;
font-weight: bold;
}
#container {
2020-02-14 00:07:25 -05:00
max-width: 800px;
}
.page {
margin: 15px;
}
2020-05-19 23:53:08 -04:00
.page img {
width: 16px;
height: 16px;
}
2020-05-22 13:03:39 -04:00
@media screen and (max-width: 480px) {
input {
font-size: smaller;
}
input[type=text] {
width: 100px;
}
}
@media screen and (max-width: 600px) {
.navbar form a {
display: none;
}
}