anope

- supernets anope source code & configuration
git clone git://git.acid.vegas/anope.git
Log | Files | Refs | Archive | README

style.css (3113B)

      1 @import url(//fonts.googleapis.com/css?family=Open+Sans:300,400);
      2 @import url(//fonts.googleapis.com/css?family=Port+Lligat+Slab);
      3 
      4 *, html, body, h1, h2, h3, h4, div, p, span, a, button {
      5 	font-family: 'Open Sans', sans-serif;
      6 }
      7 body {
      8 	background-color: #eee;
      9 	background-image: url('/static/cubes.png');
     10 }
     11 
     12 /* RANDOM STUFF */
     13 #frontPages {
     14 	padding-top: 20px;
     15 }
     16 
     17 h2 {
     18 	margin: 0 0 10px 0;
     19 }
     20 h4 {
     21 	margin-top: 30px;
     22 }
     23 .popover {
     24 	max-width: 450px;
     25 	-webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
     26 	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
     27 }
     28 
     29 .label {
     30 	font-size: 13px;
     31 	font-weight: normal;
     32 }
     33 
     34 .label-info {
     35 	background-color: #4EA4EE;
     36 }
     37 
     38 .label-info[href]:hover, .label-info[href]:focus {
     39 	background-color: #428BCA;
     40 }
     41 
     42 /* LOGIN FORM */
     43 .form-signin .form-signin-heading, .form-signin .checkbox {
     44 	margin-bottom: 10px;
     45 }
     46 .form-signin .checkbox {
     47 	font-weight: normal;
     48 }
     49 .form-signin .form-control {
     50 	position: relative;
     51 	font-size: 16px;
     52 	height: auto;
     53 	padding: 10px;
     54 	-webkit-box-sizing: border-box;
     55 	-moz-box-sizing: border-box;
     56 	box-sizing: border-box;
     57 }
     58 .form-signin .form-control:focus {
     59 	z-index: 2;
     60 }
     61 /* FOOTER */
     62 .footer {
     63 	margin-top: 20px;
     64 }
     65 
     66 /* Control Panel */
     67 .panel-default .panel-heading {
     68 	font-size: 24px;
     69 }
     70 #loggedIn {
     71 	margin: 15px 15px 0 0;
     72 }
     73 
     74 #navPanel {
     75 	margin: 0;
     76 	padding: 0;
     77 }
     78 .table thead > tr:first-child > th, .table tbody > tr:first-child > th, .table tfoot > tr:first-child > th, .table thead > tr:first-child > td, .table tbody > tr:first-child > td, .table tfoot > tr:first-child > td {
     79 	vertical-align: top;
     80 	border-top: 0;
     81 }
     82 #tableInfo td {
     83 	vertical-align: middle;
     84 }
     85 #tableInfo td:first-child {
     86 	font-weight: bold;
     87 	padding-right: 10px;
     88 	text-align: right;
     89 	width: 25%;
     90 }
     91 
     92 #tableInfoNorm td {
     93 	vertical-align: middle;
     94 }
     95 #tableInfoNorm td:first-child {
     96 	font-weight: bold;
     97 	padding-right: 10px;
     98 }
     99 
    100 #tableInfoMemos td {
    101 	vertical-align: top;
    102 }
    103 #tableInfoMemos td:first-child {
    104 	font-weight: bold;
    105 	padding-right: 10px;
    106 }
    107 #tableInfoMemos th small {
    108 	font-weight: normal;
    109 }
    110 
    111 #tableNSAccess td {
    112 	vertical-align: middle;
    113 }
    114 #tableNSAccess td:first-child {
    115 	padding-right: 10px;
    116 	text-align: left;
    117 }
    118 #tableNSAccess td:last-child {
    119 	padding-right: 10px;
    120 	text-align: right;
    121 }
    122 #tableNSAccess th small {
    123 	font-weight: normal;
    124 }
    125 
    126 #channelList li {
    127 	margin-top: 10px;
    128 }
    129 
    130 /* NAVBAR */
    131 .navbar, .well {
    132 	background-color: white;
    133 }
    134 
    135 .navbar {
    136 	-webkit-box-shadow: 0 8px 6px -8px black;
    137 	-moz-box-shadow: 0 8px 6px -8px black;
    138 	box-shadow: 0 8px 6px -8px black;
    139 }
    140 .navbar-brand {
    141 	font-size: 25px;
    142 }
    143 .navbar-brand, .navbar-brand small {
    144 	font-family: 'Port Lligat Slab', serif;
    145 }
    146 
    147 .navbar-default .nav {
    148 	margin-bottom: -1px;
    149 }
    150 
    151 .navbar-default .nav > li > a {
    152 	color: #428BCA;
    153 }
    154 
    155 .navbar-default .nav > li > a:hover, .navbar-default .nav > li > a:focus {
    156 	color: #428BCA;
    157 	border-top: 3px solid #0082D9;
    158 	margin-top: -3px;
    159 }
    160 
    161 .navbar-default .nav > li.active > a, .navbar-default .nav > li.active > a:hover, .navbar-default .nav > li.active > a:focus {
    162 	color: #428BCA;
    163 	background-color: transparent;
    164 	background-color: rgba(66, 139, 202, 0.1);
    165 	border-bottom-color: transparent;
    166 }