-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
118 lines (95 loc) · 2.22 KB
/
index.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
/* defaults for the entire page, basically */
body {
font-family: "Roboto", sans-serif;
}
#polyomino-constructor-buttons {
float: right;
margin: 15px auto;
}
/* */
#polyomino-constructor {
width: 550px;
margin: auto;
}
#save-button,
#load-button {
float: right;
}
.mdl-layout__drawer.is-visible {
width: 250px;
}
/* EVERYTHING WITHIN A PAGE IS CONTAINED IN THIS DIV */
.page-content {
clear: both;
width: 500px;
margin: 40px auto 40px auto;
}
/* DEFAULT SIZES FOR SHADOW BOX CONTAINERS */
.demo-card-square.mdl-card {
min-height: 100px;
}
svg {
cursor: url(pencil.png) 0 16, pointer;
}
#polyomino-constructor .demo-card-square.mdl-card {
width: 500px;
height: 500px;
float: left;
}
#polyomino-palette .demo-card-square.mdl-card {
width: 500px;
}
#polyomino-bank .demo-card-square.mdl-card {
width: 500px;
}
#polyomino-constructor-inc #polyomino-field-inc {
margin-bottom: 5px;
}
#polykeep {
/* separate the polykeep section from the grid sections above */
margin-top: 70px;
}
.polykeep-block {
/* separate each polykeep block from each other */
margin-top: 40px;
}
.polykeep-block .mdl-layout-title {
/* separate the headers from the keeps below them */
margin-bottom: 10px;
/* font style for the polykeep headers */
font-weight: bold;
font-size: 14px;
color: rgb(200, 200, 200);
text-transform: uppercase;
}
.mdl-button {
/* spaces buttons apart from each other */
margin-left: 10px;
}
.mdl-layout__drawer hr {
/* adjusts the height of the horizontal line */
margin: 0 0 1em 0;
}
.mdl-layout--fixed-tabs .mdl-layout__tab {
/* a little spacing on the fixed tab titles */
letter-spacing: 1px;
}
.material-icons {
/* fixes a centering issue for material icons */
line-height: 2;
}
.ns {
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Safari */
-khtml-user-select: none;
/* Konqueror HTML */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently
supported by Chrome and Opera */
}