forked from boy0001/HeightMap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
139 lines (131 loc) · 3.01 KB
/
style.css
File metadata and controls
139 lines (131 loc) · 3.01 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
ul.thumbnails.image_picker_selector {
overflow: auto;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
padding: 0px;
margin: 0px; }
ul.thumbnails.image_picker_selector ul {
overflow: auto;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
padding: 0px;
margin: 0px; }
ul.thumbnails.image_picker_selector li.group {width:100%;}
ul.thumbnails.image_picker_selector li.group_title {
float: none; }
ul.thumbnails.image_picker_selector li {
margin: 0px 12px 12px 0px;
float: left; }
ul.thumbnails.image_picker_selector li .thumbnail {
text-align: center;
background: #000;
padding: 0 0 2px 0;
border: 0px solid #111;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
box-shadow:
1px 1px 0px 0px #111,
2px 2px 0px 0px #111,
3px 3px 0px 0px #111,
4px 4px 0px 0px #111,
5px 5px 0px 0px #111,
6px 6px 0px 0px #111,
7px 7px 0px 0px #111,
8px 8px 0px 0px #111;
}
ul.thumbnails.image_picker_selector li .thumbnail img {
-webkit-user-drag: none; }
ul.thumbnails.image_picker_selector li .thumbnail.selected {
background: #0088cc;
box-shadow:
1px 1px 0px 0px #0077bb,
2px 2px 0px 0px #0077bb,
3px 3px 0px 0px #0077bb,
4px 4px 0px 0px #0077bb,
5px 5px 0px 0px #0077bb,
6px 6px 0px 0px #0077bb,
7px 7px 0px 0px #0077bb,
8px 8px 0px 0px #0077bb;
}
/* --------------- */
body {
background: #222;
color: #EEE;
}
body, div {
padding:0;
margin:0;
}
.padding {
height:270px;
}
.split {
float:left;
width:50%;display:inline-block;background:#4488FF;height:100%;
}
#nav {
height:256px;
width:100%;
background:#0088cc;
position:fixed;
border-bottom: 6px solid #0077bb;
}
#content {
height: calc(100vh - 256px);;
overflow: scroll;
}
.block {
display: block;
overflow: auto;
color: red;
}
#left {
float: left;
width: 256px;
}
#right {
margin-left: 256px;
}
input {
display: inline;
width: 100%;
padding: 4px;
font-size: 150%;
margin: 0;
border: 4px solid #333;
border-radius: 6px;
box-shadow:
1px 1px 0px 0px #333,
2px 2px 0px 0px #333,
3px 3px 0px 0px #333,
4px 4px 0px 0px #333,
5px 5px 0px 0px #333,
6px 6px 0px 0px #333,
7px 7px 0px 0px #333,
8px 8px 0px 0px #333;
}
.div-pad {
padding: 15px 50px 0px 15px;
background: none;
}
#alert {
-webkit-animation: fadeOut 1s forwards;
animation: fadeOut 1s forwards;
-webkit-animation-delay: 1s;
animation-delay: 1s;
color: white;
padding: 10px;
text-align: center;
}
@-webkit-keyframes fadeOut {
from {opacity: 1;}
to {opacity: 0;}
}
@keyframes fadeOut {
from {opacity: 1;}
to {opacity: 0;}
}