-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
70 lines (67 loc) · 1.03 KB
/
styles.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
62
63
64
65
66
67
68
69
70
/* TEXT */
%message {
font: 15px arial,sans-serif;
color: #202124;
}
// $font: 15px arial,sans-serif;
// html * {
// font: $font;
// color: #202124;
// }
/* links */
a {
@extend %message;
color: rgba(0,0,0,.87);
text-decoration: none;
}
/* FORMS */
input, button, label {
@extend %message;
margin-bottom: 10px;
font-size: 14px;
}
/* PAGE STRUCTURE MAIN */
#header{
margin-top: 20px;
height: 50px;
}
#header-left{
text-align: left;
float: left;
}
#header-mid{
float: right;
}
#header-right{
text-align: right;
overflow: hidden;
}
#body {
margin-bottom: 100px;
margin-left: auto;
margin-right: auto;
}
#body-left{
text-align: left;
}
#body-mid{
text-align: center;
}
#body-right{
text-align: left;
}
#footer {
position: fixed;
height: 50px;
bottom: 50px;
left: 0px;
right: 0px;
margin-top: 100px;
margin-bottom: 0px;
text-align: center;
}
#footer-mid{
margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}