-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathshared.css
More file actions
56 lines (52 loc) · 1.16 KB
/
shared.css
File metadata and controls
56 lines (52 loc) · 1.16 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
.TitleInfo {
width: 100%;
min-height: 50px;
white-space: nowrap;
}
.Title {
font-family: Arial, Helvetica, sans-serif;
font-size: 18pt;
text-align: center;
border: none;
width: 100%;
text-align: center;
margin-top: 25px;
}
.PuzzleLayout {
-webkit-box-align: start;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
height: 100vh;
max-height: 660px;
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around;
margin: auto;
margin-top: 20px;
max-width: 1132px;
padding: 10px;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
font-family: arial,sans-serif;
}
.BoardAndClueBar {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
}
#Board {
display: block;
font-family: arial,sans-serif;
margin: 1px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
width: 100%;
}