-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
executable file
·61 lines (52 loc) · 1.19 KB
/
style.scss
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/**************************************************/
/******************* variables ********************/
/**************************************************/
$orange: #FF5F19;
$white: #FFFFFF;
$main: #938F8D;
$mainTitles: #5A5655;
$lightGray: #D1CDCB;
$darkGray: #979797;
/**************************************************/
/***************** general styles *****************/
/**************************************************/
*,
*::after,
*::before {
box-sizing: border-box;
}
body {
text-align: center;
font-family: "Gotham Rounded", Helvetica, sans-serif;
color: $main;
max-width: 700px;
margin: 0 auto;
padding: 20px;
}
a {
color: $orange;
text-decoration: none;
}
.logo {
width: 63px;
}
.animation-container {
margin: 70px auto 100px;
}
/* This simulates our background. It's blurred with css because I wanted to check whether this impacted performance. It looks like it's not a problem. */
.bg {
position: fixed;
top: -30px;
left: -30px;
right: -30px;
bottom: -30px;
background-image: url('duplii-funnel-preview.png');
background-size: cover;
-webkit-filter: blur(7px);
z-index: -2;
}
.bg-overlay {
background-image: none;
background-color: rgba(0, 0, 0, .8);
z-index: -1;
}