Files
twofactorauth/css/base.css

134 lines
2.3 KiB
CSS
Raw Permalink Normal View History

2014-03-14 23:14:07 -05:00
html, body, div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td { margin: 0; padding: 0; }
html, body {height: 100%;}
img { border: none; }
ul { list-style: none; }
2014-03-15 10:17:25 -05:00
a { color: #009FDA; text-decoration: none; }
2014-03-14 23:14:07 -05:00
body {
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #505050;
line-height: 22px;
background: none;
}
p {
margin: 1em 0;
}
.sidenav {
position: fixed;
}
2014-03-14 23:14:07 -05:00
.container {
max-width: 840px;
width: 100%;
2014-03-14 23:14:07 -05:00
margin: 0 auto;
padding-top: 40px;
}
2014-03-16 12:26:11 -05:00
.ui.menu.main > .menu {
width: 840px;
margin: 0 auto;
}
2014-03-15 10:32:12 -05:00
.main .column .banner {
display: block;
margin: 40px auto;
}
2014-03-15 10:17:25 -05:00
.footer {
text-align: center;
}
.ui.table tr.negative,
.ui.table td.negative,
.ui.table tr.positive,
.ui.table td.positive {
-webkit-box-shadow: none;
box-shadow: none;
}
td.icon {
text-align: center;
}
td i.icon{
margin: 0em 0em 0em 0em;
}
td span.progress,
td span.exception,
td a.exception {
float: right;
}
td a {
/*color: #505050;*/
}
td.twitter {
text-align: center;
}
td img.icon {
float: left;
border-radius: 50%;
padding: 4px 4px;
-webkit-box-shadow: 0 0 0 .1em rgba(0,0,0,.1) inset;
box-shadow: 0 0 0 .1em rgba(0,0,0,.1) inset;
line-height: 1;
margin-right: 8px;
background-color: white;
height: 16px;
}
2014-03-15 11:17:34 -05:00
.ui.table tr.positive td,
.ui.table td.positive {
background-color: #dff0d8 !important;
}
.ui.celled.table tr.positive:hover td,
.ui.celled.table tr:hover td.positive,
.ui.table tr.positive:hover td,
.ui.table td:hover.positive,
.ui.table th:hover.positive {
background-color: #dff0d8 !important;
}
.ui.table tr.negative td,
.ui.table td.negative {
background-color: #f2dede !important;
}
.ui.celled.table tr.negative:hover td,
.ui.celled.table tr:hover td.negative,
.ui.table tr.negative:hover td,
.ui.table td:hover.negative,
.ui.table th:hover.negative {
background-color: #f2dede !important;
}
2014-03-15 14:51:29 -05:00
.ui.divider {
margin: 2em 0;
}
2014-03-15 14:51:29 -05:00
@media only screen and (max-width: 1199px) {
.ui.menu.desktop {
display: block;
}
.ui.menu.mobile {
display: none;
}
}
@media only screen and (min-width: 480px) and (max-width: 767px), screen and (max-width: 479px) {
.ui.menu.desktop {
display: none;
}
.ui.menu.mobile {
display: block;
}
}