-
Notifications
You must be signed in to change notification settings - Fork 0
/
scroll.scss
56 lines (48 loc) · 907 Bytes
/
scroll.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
$counter: true; //false to hide percentage
#navigation {
position: fixed;
top: -66px;
left: 0; right: 0;
width: 100%;
height: 60px;
background-color: #006699;
box-shadow: 0px 3px 3px 0px rgba(21, 21, 21, 0.1);
/*
#
#Edit these to change CSS transition delay, speed, and type
#
*/
transition: top .25s ease .5s;
}
#navigation p {
text-align: center;
color: #fff;
}
.container {
text-align: center;
margin-bottom: 2em;
}
#percentageCounter {
@if $counter == true {
position: fixed;
} @else if $counter == false {
display: none;
}
bottom: 10px;
right: 10px;
}
h1 {
font-size: +2em;
}
.content {
width: 30%;
margin: 0 auto;
padding: 10px;
border: 1px solid #000;
background-color: #f5f5f5;
}
p {
margin-bottom: 1em;
}
* { font-family: 'Open Sans', sans-serif; }
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300);