-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo.css
65 lines (55 loc) · 1.1 KB
/
demo.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
@import url("https://fonts.googleapis.com/css?family=Fascinate");
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html, body {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
background-color: floralwhite;
}
.esri-component.esri-attribution.esri-widget {
opacity: 0.6;
background-color: transparent;
}
img {
border: 1px solid black;
}
header {
position: absolute;
left: 0;
top: 0;
padding: 20px;
font-family: "Avenir Next W01", "Avenir Next W00", "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial,
sans-serif;
font-size: 1.7em;
font-weight: bold;
z-index: 2;
text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
div.top {
width: 50%;
height: 50%;
float: left;
}
div.top:nth-of-type(1) {
background: #ccc;
}
div.top:nth-of-type(2) {
background: #bbb;
border-left: 1px solid #f00;
}
div.top:nth-of-type(3) {
background: #aaa;
border-top: 1px solid #f00;
}
div.top:nth-of-type(4) {
background: #ddd;
border-top: 1px solid #f00;
border-left: 1px solid #f00;
}