Welcome to mirror list, hosted at ThFree Co, Russian Federation.

children.scss « shortcodes « sass « assets - github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a4eb86793bfa9b22095a8beb6b5cac8796a7dee (plain)
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
article {
ul.children.children-card {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    
    >span {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-width: 0;
        min-height: 0;
            width: 40%;
            min-width: 250px;
        margin: 1rem 1rem ;
            border: 0.1rem solid #ccc;
            
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        card{
        	margin: 0px 0px;
        	display: block;
			padding: 1rem;
        	background-color: #eee;
        	font-size: 200%;
        }

        p{
        	padding: 0rem 1rem;
        }
    }
}
}