]> de.git.xonotic.org Git - xonotic/xonstat.git/blob - xonstat/static/css/app.css
Add header image, statline, and border box.
[xonotic/xonstat.git] / xonstat / static / css / app.css
1 /* Fonts */
2 @font-face {
3     font-family: 'XoloniumNormal';
4     src: url('fonts/xolonium-webfont.eot');
5     src: url('fonts/xolonium-webfont.eot?#iefix') format('embedded-opentype'),
6          url('fonts/xolonium-webfont.woff') format('woff'),
7          url('fonts/xolonium-webfont.ttf') format('truetype'),
8          url('fonts/xolonium-webfont.svg#XoloniumNormal') format('svg');
9     font-weight: normal;
10     font-style: normal;
11 }
12
13
14 /* Primary elements */
15 body {
16     background: url("img/web_background_4.jpg") no-repeat fixed center center / cover  black;
17     color: #D0D0D0;
18     font-family: "XoloniumNormal", "Helvetica Neue", Helvetica, Arial, sans-serif;
19 }
20 #statline {
21     font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
22     font-size: 13px;
23     position: relative;
24     top: -25px;
25 }
26 #xonborder {
27     background: rgb(0, 0, 0); /* IE Fallback */
28     background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);
29     border-radius: 15px 15px 15px 15px;
30     margin-bottom: 30px;
31     margin-left: 0px;
32     padding: 20px;
33 }
34
35
36 /* Navigation bar */
37 .navbar-brand {
38     margin-left: 0;
39     padding-bottom: 0px;
40     padding-top: 10px;
41     text-align: left;
42 }
43 .navbar-inverse {
44     background: none repeat scroll 0 0 rgba(0, 0, 0, 0.6);
45 }
46 .navbar-inverse .nav>.active>a, .navbar-inverse .nav>.active>a:hover, .navbar-inverse .nav>.active>a:focus {
47     background: none repeat scroll 0 0 rgba(49, 49, 49, 0.6);
48 }
49 .navbar-inverse .nav>li>a, .navbar-brand {
50     font-family: XoloniumNormal;
51 }
52 .search, input[type="search"] {
53     background-color: #606060;
54     border: 1px solid #202020;
55     color: #AAAAAA;
56     width: 100px;
57 }
58
59 /* Desktop-specific stuff */
60 @media (min-width: 768px) {
61     .navbar-form {
62         float: right;
63     }
64 }