-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.sass
61 lines (49 loc) · 957 Bytes
/
styles.sass
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
// Basics
//
// Styleguide 2
$dark-grey: #999;
$white: #FFF;
$opacity-black-2: #000;
$blue: blue;
$orange: orange;
$orange-gradient: orange;
// Button
//
// default - Default button
// button--shadow - Shadow button
// button--blue - Blue button
// button--orange - Orange button
// button--orange-gradient - Orange gradient button
//
// markup:
// <a href="#" class="button {$modifiers}">Button text</a>
//
// Styleguide 2.1
.button
background: $dark-grey
border-radius: 5px
color: $white
display: block
font-size: 18px
line-height: 20px
padding: 14px 10px
position: relative
text-align: center
text-decoration: none
&--shadow
box-shadow: 1px 2px 4px $opacity-black-2
&--blue
background: $blue
&--orange
background: $orange
&--orange-gradient
background: $orange-gradient
// Navigation
//
// markup:
// <nav class="nav">Navigation</nav>
//
// Styleguide 2.2
.nav
display: block
background: $blue