Newer
Older
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
@import 'variables';
body:not(.navigation-categories):not(.navigation-topics) #main-outlet {
@include border-radius;
box-shadow: 0 8px 60px 0 rgba(103,151,255,.10), 0 12px 90px 0 rgba(133,255,103,.10);
padding: 2em;
background-color: $color-white;
border-top: 8px solid $tertiary;
margin-top: .8em;
}
#main-outlet:after {
content: "";
display: block;
position: fixed;
z-index: -1;
width: 500px;
height: 500px;
border-radius: 2000px;
background: $color-blue;
right: 1px;
top: -57px;
}
#main-outlet:before {
content: "";
display: block;
position: fixed;
z-index: -1;
width: 300px;
height: 300px;
border-radius: 30px;
background: $color-square-webkit-gradient;
background: $color-square-gradient;
left: 70px;
top: 350px;
transform: rotate(74deg);
transform-origin: 0 100%;
}