-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.scss
50 lines (48 loc) · 1.02 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
@import "bourbon/bourbon";
@import "neat/neat";
@import "base/base";
body, html {
@include outer-container;
}
.genesis {
@include span-columns(8 of 12);
@include shift(2);
margin-top: 10em;
input {
margin-top: 10px;
@include span-columns(8 of 8);
}
.dropdown{
@include span-columns(8 of 8);
height: auto;
margin-top: -12px;
background-color: #ffffff;
border-color: #ddd;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
border-width: 1px;
border-style: solid;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
font-size: 1em;
.item{
@include span-columns(8 of 8);
padding-top: 0.5em;
padding-left: 0.5em;
padding-right: 0.5em;
}
li {
border-width: 1px;
float: left;
@include span-columns(5 of 8);
//padding-left: 0.5em;
//padding-top: 0.75em;
}
p {
@include span-columns(3 of 8);
float: right;
text-align: right;
color: #ddd;
//padding-top: 0.75em;
}
}
}