~maas-committers/maas/trunk

« back to all changes in this revision

Viewing changes to src/maasserver/static/scss/maas/base/_base.scss

Adding all assets and new theme files

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
@charset "UTF-8";
2
 
 
3
 
/**
4
 
 * MAAS base styles
5
 
 *
6
 
 * @project     MAAS
7
 
 * @author      Web Team at Canonical Ltd
8
 
 * @copyright   2015 Canonical Ltd
9
 
 *
10
 
 */
11
 
 
12
 
/**
13
 
 * Dependencies
14
 
 *
15
 
 * Importing mixin file from Ubuntu guidelines: core-mixins.scss
16
 
 */
17
 
 
18
 
/**
19
 
 * General
20
 
 *
21
 
 * General element styles
22
 
 *
23
 
 * @section general
24
 
 */
25
 
 
26
 
* {
27
 
    margin: 0;
28
 
}
29
 
 
30
 
html {
31
 
    height: 100%;
32
 
}
33
 
 
34
 
body {
35
 
    height: 100%;
36
 
    font-size: 1.0em;
37
 
    font-family: 'Ubuntu', Arial, 'libra sans', sans-serif;
38
 
    font-weight: 300;
39
 
}
40
 
 
41
 
hr {
42
 
    border: none;
43
 
    background: #B2B2B2;
44
 
    width: 100%;
45
 
    height: 1px;
46
 
    display: block;
47
 
    width: 100%;
48
 
    float: left;
49
 
    margin-bottom: 20px;
50
 
}
51
 
 
52
 
ul,
53
 
ol {
54
 
    margin-left: 0;
55
 
}
56
 
 
57
 
a:link,
58
 
a:visited {
59
 
  color: $cool-grey;
60
 
  text-decoration: none;
61
 
  border-bottom: 1px solid #CDCDCD;
62
 
 
63
 
  &:hover {
64
 
    color: $ubuntu-orange;
65
 
    text-decoration: none;
66
 
  }
67
 
}
68
 
 
69
 
a:active,
70
 
a:focus {
71
 
    outline: none;
72
 
}
73
 
 
74
 
::selection {
75
 
    color: #FFF;
76
 
    background: $ubuntu-orange;
77
 
}
78
 
 
79
 
::-moz-selection {
80
 
    color: #FFF;
81
 
    background: $ubuntu-orange;
82
 
}