ubuntuusers.de

css

Datum:
23. Februar 2015 14:39
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
.body {
	background-color: #000

}

.container > header h1 span{
	font-size: 28px;
	color: #80B8CE;
	text-shadow: 0px 1px 1px rgba(255,255,255,0.8);
}
.container > header h2{
	font-size: 16px;
	font-style: italic;
	color: #fff;
	text-shadow: 0px 1px 1px rgba(255,255,255,0.8);
}
/* Reset
-------------------------------- */
.widget ul.menu,
.widget .post-body ul.menu {
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 0;
}
.post-body .menu { font-size: 1em }
/* Clearfix
-------------------------------- */
.menu::after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
/* Menu
-------------------------------- */
.menu {
    max-width: 830px;
    margin: 20px auto;
    padding: 15px !important;
    list-style: none;
    background: #272725;
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.1) inset;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.1) inset;
    box-shadow: 0 1px 2px rgba(0,0,0,.1) inset;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
    .menu .cover { z-index: 2 }
    .menu .cover:focus { outline: 0 }
/* -------------------------------- */
    .menu li {
        position: relative;
        float: left;
        cursor: pointer;
        height: 120px;
        width: 200px;
        margin: 10px 0 0 10px;
        color: #fff;
    }
#one { width: 620px }
#nine { width: 410px }
.menu li:hover,
.menu li:focus {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.2)), to(rgba(255,255,255,0)));
    background-image: -webkit-linear-gradient(top, rgba(255,255,255,.2), rgba(255,255,255,0));
    background-image: -moz-linear-gradient(top, rgba(255,255,255,.2), rgba(255,255,255,0));
    background-image: -ms-linear-gradient(top, rgba(255,255,255,.2), rgba(255,255,255,0));
    background-image: -o-linear-gradient(top, rgba(255,255,255,.2), rgba(255,255,255,0));
    background-image: linear-gradient(top, rgba(255,255,255,.2), rgba(255,255,255,0));
}
.menu #one,
.menu #two { margin-top: 0px }
.menu #one,
.menu #three,
.menu #seven,
.menu #ten { margin-left: 0 }
/* -------------------------------- */
    .menu #one,
    .menu #one .content,
    .menu #one .close { background-color: #2c618f }
.menu #two,
.menu #two .content,
.menu #two .close { background-color: #91ab31 }
.menu #three,
.menu #three .content,
.menu #three .close { background-color: #714a28 }
.menu #four,
.menu #four .content,
.menu #four .close { background-color: #e58600 }
.menu #five,
.menu #five .content,
.menu #five .close { background-color: #c33a00 }
.menu #six,
.menu #six .content,
.menu #six .close { background-color: #7f5dac }
.menu #seven,
.menu #seven .content,
.menu #seven .close { background-color: #5672b7 }
.menu #eight,
.menu #eight .content,
.menu #eight .close { background-color: #ce7c9d }
.menu #nine,
.menu #nine .content,
.menu #nine .close { background-color: #DAA520 }
.menu #ten,
.menu #ten .content,
.menu #ten .close { background-color: #2e855e }
.menu #eleven,
.menu #eleven .content,
.menu #eleven .close { background-color: #393043 }
.menu #twelve,
.menu #twelve .content,
.menu #twelve .close { background-color: #CD5C5C }
.menu #thirten,
.menu #thirten .content,
.menu #thirten .close { background-color: #A0522D }
/* -------------------------------- */
.menu .content {
    opacity: 0;
    display: none\9;
    overflow: hidden;
    font: 18px Arial, Helvetica;
    position: absolute;
    height: 120px;
    width: 200px;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.menu .expanded {
    opacity: .95;
    display: block;
    overflow: ;
    padding: 40px;
    height: 440px;
    width: 750px;
}
.menu #ten .content,
.menu #eleven .content,
.menu #twelve .content,
.menu #thirten .content { bottom: 0 }
.menu #five .expanded,
.menu #nine .expanded,
.menu #twelve .expanded { margin-left: -420px }
.menu #four .expanded,
.menu #eight .expanded,
.menu #eleven .expanded { margin-left: -210px }
.menu #two .expanded,
.menu #six .expanded,
.menu #thirten .expanded { margin-left: -630px }
.menu #three .expanded,
.menu #four .expanded,
.menu #five .expanded,
.menu #six .expanded { margin-top: -134px }
.menu #seven .expanded,
.menu #eight .expanded,
.menu #nine .expanded { margin-top: -267px }
.menu #ten .expanded,
.menu #eleven .expanded,
.menu #twelve .expanded,
.menu #thirten .expanded { margin-top: -390px }
/* -------------------------------- */
.menu .title {
    position: absolute;
    height: 100%;
    width: 100%;
    text-align: center;
    font: italic bold 1em/120px 'trebuchet MS', Arial, helvetica;
    opacity: .2;
}
.menu li:hover .title { opacity: .7 }
/* -------------------------------- */
.menu .close {
    display: none;
    border: 5px solid #fff;
    color: #fff;
    cursor: pointer;
    height: 40px;
    width: 40px;
    font: bold 20px/40px arial, helvetica;
    position: absolute;
    text-align: center;
    top: -20px;
    right: -20px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px;
}
.menu .cover .close { display: block }

.settings .titel{
	font-size: 28px;
	color: #80B8CE;
}

.footer {
font-size: 12px; 
color: #fff;
text-align: center;

}
/* Media Queries */