-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
122 lines (103 loc) · 2.26 KB
/
styles.css
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
body {
font-family: sans-serif;
color: #333;
margin: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-touch-callout: none;
}
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: local('Material Icons'),
local('MaterialIcons-Regular'),
url(assets/MaterialIcons-Regular.woff2) format('woff2'),
url(assets/MaterialIcons-Regular.woff) format('woff'),
url(assets/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 24px; /* Preferred icon size */
display: inline-block;
width: 1em;
height: 1em;
line-height: 1;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;
/* Support for all WebKit browsers. */
-webkit-font-smoothing: antialiased;
/* Support for Safari and Chrome. */
text-rendering: optimizeLegibility;
/* Support for Firefox. */
-moz-osx-font-smoothing: grayscale;
/* Support for IE. */
font-feature-settings: 'liga';
}
a, a:hover {
text-decoration: none;
}
md-toolbar {
background-color: #4C8C2B;
box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2);
color: #fff;
font-size: 20px;
font-weight: 400;
margin-bottom: 1.5em;
}
md-button {
margin: 0.5em 1em 0.5em 0;
width: 10em;
}
md-button[right] {
position: fixed;
right: 0;
}
md-tabs {
background-color: #62AC1E;
color: #fff;
}
md-tabs::shadow #selectionBar {
background-color: #F8981D;
}
md-list-item.rule-item {
height: auto ;
background-color: #FFFFFF;
border: 1px solid #5F6062;
border-radius: 5px;
}
md-list-item.rule-item .name {
font-size: 1.12em;
font-weight: bold;
margin-top:5px;
margin-bottom:5px;
}
md-list-item.rule-item .header {
margin-top: 5px;
font-size: 1.1em;
font-weight: bold;
}
md-list-item.rule-item .description {
font-size: 1em;
font-style: italic;
}
.ruledissabled {
color:grey;
}
.ruleselected {
background-color: lightgrey;
}
.actionbutton {
background-color: #62AC1E;
color: #fff;
margin: 10px;
border-radius: 5px;
}