ubuntuusers.de

inyoka-elementum.css

Autor:
Quassy
Datum:
19. Juni 2014 19:01
Code:
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/*
Author: Quassy
http://wiki.ubuntuusers.de/Benutzer/Quassy
License: CC BY-SA 4.0
http://creativecommons.org/licenses/by-sa/4.0/
*/
@charset "UTF-8";
/*@-moz-document domain("ubuntuusers.de") {*/
    /* Allgemein */
    html, body {
      background-color: #fff;
      background-image: url(http://elementaryos.org/img/nav-bg.png);
      background-repeat: no-repeat;
      background-position: center -30px;
      font-family: 'Open Sans', 'Droid Sans', sans-serif !important; 
    }
    div.wrap {
      background: transparent;
      border: none;
      padding: 0;
      margin: 0;
    }
    ::selection {
      color: #fff;
      background: #47A8E9;
    }
    a {
      color: #005CFF !important;
      text-decoration: none !important;
    }
    
    /* Header */
    div.header, 
    div.header > *, 
    div.header > * > * {
      display: flex;
      flex-direction: row;
      align-items:center;
    }
    div.header {
      background: #eee;
      background: linear-gradient(to bottom, #fff 0%,#eee 100%);
      border: 1px solid #bbb;
      border-radius: 5px;
      box-sizing: border-box;
      width: 940px;
      height: 50px;
      margin: 18px auto 34px;
      align-items: stretch;
      line-height: 34px;
      box-shadow: 0 0 3px rgba(0,0,0,.15);
    }
    div.header * {
      float:none !important;
      padding:0 !important;
      margin:0 !important;
      height:auto !important;
    }
    /* Logo */
    div.header h1 a {
      height:34px !important;
      width:32px;
      margin: 0 20px !important;
      background-image: url("http://elementaryos.org/img/navsprite.png") !important;;
      background-repeat: no-repeat;
      background-position: 0 -108px;
    }
    div.header h1 a:hover {
      background-position: 0 -261px;
    }
    /* Links */
    div.header ul.tabbar {
      left: 0;
      top: 0;
    }
    div.header span {
      display:none !important;
    }
    div.header .tab_left, 
    div.header .tab_right {
      display:none;
    }
    div.header .tab_center {
      background: transparent !important;
    }
    div.header .tab_center a {
      padding: 0 20px !important;
      font-weight: normal;
      color: #000;
    }
    div.header li {
      height: 48px !important;
    }
    div.header li:before {
      display:block;
      width:1px;
      height:48px;
      content:" ";
    }
    div.header li:before {
      background:linear-gradient(to bottom, #fff 0%,#ccc 50%,#eee 100%); 
      box-shadow:1px 0 #fff;
    }
    div.header li.active:before,
    div.header li.active + li:before {
      display:none;
    }
    div.header li.active {
      background: #f0f0f0;
      border: 1px solid #bbb;
    }
    
    /* Hauptüberschrift */
    .appheader h1 {
      font-size:32px;
      font-weight:600;
    }
    .appheader .separator:after {
      color: #999 !important;
    }
    .appheader h1 a {
      color:#333 !important;
    }
    .appheader h2 {
      font-size: 22px;
      font-weight: 300;
      margin: 0 !important;
    }
    .appheader h2 a {
      color: #4d4d4d !important;
    }
    /* Fußzeile */
    .footer {
      background:#333;
      color:#fff;
      background: linear-gradient(to bottom, #111 0%,#333 10px);
    }
/*}*/