This repository has been archived by the owner on Mar 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
56 lines (54 loc) · 1.64 KB
/
app.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
/*
* This file is provided for application-specific style rules.
*
* By default, Maqetta includes this CSS file within HTML pages
* authored in Maqetta.
*
* This file is typically used to override style rules found in
* theme CSS files. For example, suppose the theme CSS file has:
*
* .claro .dijitButton .dijitButtonNode {
* padding:2px 4px 4px 4px;
* }
*
* But for your application suppose you want to tighten the padding
* for buttons. Then, you might include the following style rule
* in this file (assuming that you accept Maqetta's default where
* id "myapp" is present on the BODY element, and assuming
* that you are using the "claro" theme):
*
* #myapp.claro .dijitButton .dijitButtonNode {
* padding:1px 3px 3px 3px;
* }
*
* Because of CSS precedence rules (see [1]), the above style rule
* (which begins with #myapp.claro) will "win the cascade" versus
* the style rule from the theme CSS file due to the use of the
* ID select (#myapp), which has higher specificity than the class
* selectors used throughout the Claro theme.
*
* [1] http://www.w3.org/TR/CSS21/cascade.html#cascade
*/
html,body {
height: 100%;
width: 100%;
background-image: url('http://subtlepatterns.com/patterns/polaroid.png');
}
.dijitBorderContainer-child {
background-image: url('http://subtlepatterns.com/patterns/furley_bg.png');
font-family: 'Ruda', sans-serif;
}
.darkBar {
background-image: url('http://subtlepatterns.com/patterns/rubber_grip.png');
border-radius: 6px;
color: white;
}
.darkBar h1 {
font-weight: 900;
}
.claro .titlePaneEpisode {
padding-top: 8px;
}
.claro .titlePaneEpisode .dijitTitlePaneContentInner {
padding: 0px;
}