mirror of
https://github.com/moparisthebest/android-app
synced 2024-11-15 05:15:04 -05:00
244 lines
3.9 KiB
CSS
244 lines
3.9 KiB
CSS
|
/* ==========================================================================
|
||
|
Sommaire
|
||
|
|
||
|
1 = Style Guide
|
||
|
2 = Layout
|
||
|
3 = Pictos
|
||
|
4 = Messages
|
||
|
5 = Article
|
||
|
6 = Media queries
|
||
|
|
||
|
========================================================================== */
|
||
|
|
||
|
html {
|
||
|
min-height: 100%;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background: #EEE;
|
||
|
}
|
||
|
|
||
|
/* ==========================================================================
|
||
|
1 = Style Guide
|
||
|
========================================================================== */
|
||
|
|
||
|
::selection {
|
||
|
color: #FFF;
|
||
|
background: #000;
|
||
|
}
|
||
|
|
||
|
h2, h3, h4 {
|
||
|
font-family: 'PT Sans', sans-serif;
|
||
|
text-transform: uppercase;
|
||
|
}
|
||
|
|
||
|
p, li {
|
||
|
color: #666;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #000;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
a:hover, a:focus {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
h2:after {
|
||
|
content: "";
|
||
|
height: 4px;
|
||
|
width: 70px;
|
||
|
background: #000;
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
.links {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
.links li {
|
||
|
list-style: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
#links {
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
width: 10em;
|
||
|
left: 0;
|
||
|
text-align: right;
|
||
|
background: #333;
|
||
|
padding-top: 9.5em;
|
||
|
height: 100%;
|
||
|
box-shadow:inset -4px 0 20px rgba(0,0,0,0.6);
|
||
|
z-index: 10;
|
||
|
}
|
||
|
|
||
|
#main {
|
||
|
margin-left: 13em;
|
||
|
position: relative;
|
||
|
z-index: 10;
|
||
|
padding-right: 5%;
|
||
|
padding-bottom: 1em;
|
||
|
}
|
||
|
|
||
|
#links a {
|
||
|
display: block;
|
||
|
padding: 0.5em 2em 0.5em 1em;
|
||
|
color: #FFF;
|
||
|
position: relative;
|
||
|
text-transform: uppercase;
|
||
|
text-decoration: none;
|
||
|
font-weight: normal;
|
||
|
font-family: 'PT Sans', sans-serif;
|
||
|
-webkit-transition: all 0.5s ease;
|
||
|
-moz-transition: all 0.5s ease;
|
||
|
-ms-transition: all 0.5s ease;
|
||
|
-o-transition: all 0.5s ease;
|
||
|
transition: all 0.5s ease;
|
||
|
}
|
||
|
|
||
|
#links a:hover, #links a:focus {
|
||
|
background: #999;
|
||
|
color: #000;
|
||
|
}
|
||
|
|
||
|
#links .current:after {
|
||
|
content: "";
|
||
|
width: 0;
|
||
|
height: 0;
|
||
|
position: absolute;
|
||
|
border-style: solid;
|
||
|
border-width: 10px;
|
||
|
border-color: transparent #EEE transparent transparent;
|
||
|
right: 0;
|
||
|
top: 50%;
|
||
|
margin-top: -10px;
|
||
|
}
|
||
|
|
||
|
#links li:last-child {
|
||
|
position: fixed;
|
||
|
bottom: 1em;
|
||
|
width: 10em;
|
||
|
}
|
||
|
|
||
|
#links li:last-child a:before {
|
||
|
font-size: 1.2em;
|
||
|
position: relative;
|
||
|
top: 2px;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
/* ==========================================================================
|
||
|
2 = Layout
|
||
|
========================================================================== */
|
||
|
|
||
|
#content {
|
||
|
margin-top: 1em;
|
||
|
min-height: 30em;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
text-align: right;
|
||
|
position: relative;
|
||
|
bottom: 0;
|
||
|
right: 5em;
|
||
|
color: #999;
|
||
|
font-size: 0.8em;
|
||
|
font-style: italic;
|
||
|
z-index: 20;
|
||
|
}
|
||
|
|
||
|
footer a {
|
||
|
color: #999;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
/* ==========================================================================
|
||
|
5 = Article
|
||
|
========================================================================== */
|
||
|
|
||
|
header.mbm {
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
#article {
|
||
|
width: 70%;
|
||
|
/* margin-bottom: 3em; */
|
||
|
text-align: justify;
|
||
|
word-wrap: break-word;
|
||
|
}
|
||
|
|
||
|
#article .tags {
|
||
|
margin-bottom: 1em;
|
||
|
}
|
||
|
|
||
|
#article i {
|
||
|
font-style: normal;
|
||
|
}
|
||
|
|
||
|
blockquote {
|
||
|
border:1px solid #999;
|
||
|
background: #FFF;
|
||
|
padding: 1em;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
#article h2, #article h3, #article h4 {
|
||
|
text-transform: none;
|
||
|
}
|
||
|
|
||
|
#article h2:after {
|
||
|
content: none;
|
||
|
}
|
||
|
|
||
|
/* ==========================================================================
|
||
|
6 = Media Queries
|
||
|
========================================================================== */
|
||
|
|
||
|
|
||
|
@media screen {
|
||
|
body > header {
|
||
|
background: #333;
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
width: 100%;
|
||
|
height: 3em;
|
||
|
z-index: 11;
|
||
|
}
|
||
|
#links li:last-child {
|
||
|
position: static;
|
||
|
width: auto;
|
||
|
}
|
||
|
#links li:last-child a:before {
|
||
|
content: none;
|
||
|
}
|
||
|
#links {
|
||
|
display: none;
|
||
|
width: 100%;
|
||
|
height: auto;
|
||
|
padding-top: 3em;
|
||
|
}
|
||
|
footer {
|
||
|
position: static;
|
||
|
margin-right: 3em;
|
||
|
}
|
||
|
#main {
|
||
|
margin-left: 1.5em;
|
||
|
padding-right: 1.5em;
|
||
|
position: static;
|
||
|
}
|
||
|
|
||
|
#article {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
#article h1 {
|
||
|
font-size: 1.2em;
|
||
|
}
|
||
|
}
|