-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.scss
More file actions
51 lines (34 loc) · 823 Bytes
/
main.scss
File metadata and controls
51 lines (34 loc) · 823 Bytes
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
.hero {
background-color:#00386b;
padding: 6em 0;
color: #fff;
text-align: center;
h1 {
font-size: 4em;
}
p {
font-size: 3em;
}
}
.ui.menu {
margin-bottom: 0;
border-radius: 0;
}
$paddingList: ("pudgy" 9em) ("meaty" 8.5em) ("portly" 8em) ("hefty" 7.5em) ("bulky" 7em) ("beefy", 6.5em) ("fluffy" 6em) ("cushy" 5em) ("airy" 4.5em) ("spacey" 4em) ("comfy" 3em) ("homey" 2.5em) ("cozy" 2em) ("narrow" 1.5em) ("snug" 1em) ("compact" 1.5em) ("tight" 0em);
@each $i in $paddingList {
$name: nth($i, 1);
$value: nth($i, 2);
.#{$name}, .ui.grid.#{$name} {
padding: $value 0;
}
}
.ui.button.caps {
text-transform: uppercase;
}
.ui.menu .fa { margin-right: 10px;}
.footer {
background-color: #00386b;
color: #fff;
font-size: 2em;
padding: 2em;
}