1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // @Author: Bachir Soussi Chiadmi <bach>
- // @Date: 16-04-2017
- // @Email: bachir@figureslibres.io
- // @Last modified by: bach
- // @Last modified time: 18-04-2017
- // @License: GPL-V3
- html, body{
- font-size: 16px;
- font-family: 'amiri', sans-serif;
- position: relative;
- }
- #app{
- position: relative;
- }
- main#content{
- display:inline-block;
- margin: 0 auto;
- }
- section.item{
- width:350px;
- margin: 1em 0;
- // max-height:14px;
- // overflow: hidden;
- // transition: max-height 0.5s ease-in-out;
- // &.active{
- // max-height:1000px;
- // }
- h1{
- font-size: 0.750em;
- margin: 0;
- cursor:pointer;
- }
- div.text div.paragraph{
- margin-bottom: 1em;
- }
- div.text section.item{
- padding-left:2em;
- border-left: 1px solid #999;
- }
- }
|