diaspora/app/assets/stylesheets/help.css.scss
Steffen van Bergerem 324b09a72a add help page
2013-08-26 15:26:18 +02:00

82 lines
1.3 KiB
SCSS

ul#help_nav {
display: inline;
padding: 0;
font-size: large;
position: absolute;
left: 198px;
top: 5px;
> li {
display: inline;
margin-right: 1em;
font-weight: 700;
a {
padding: 2px;
font-weight: normal;
}
}
}
#faq_nav {
h4 {
font-weight: 700;
}
ul {
padding: 0;
li {
font-weight: 700;
margin-bottom: 10px;
a {
font-weight: normal;
}
}
}
}
#faq {
h1, h2 {
text-align: center;
font-weight: 700;
}
ul, ol {
margin: 0;
padding: 10px 0 10px 20px;
text-align: left;
}
ul > li {
list-style-type: disc !important;
}
text-align: justify;
.question {
background-color: rgb(242, 242, 242);
margin-bottom: 10px;
@include border-radius(4px);
a.toggle { text-decoration: none; }
h4 {
text-align: left;
font-weight: 700;
margin: 0px;
padding: 10px 20px;
}
&.collapsed {
border: 2px solid rgb(242, 242, 242);
}
&.opened {
border: 2px solid rgb(142, 222, 61);
h4 {
background-color: rgb(142, 222, 61);
}
}
.answer {
@include border-bottom-radius(4px);
background-color: white;
padding: 10px 20px;
}
}
}