-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
79 lines (72 loc) · 1.73 KB
/
styles.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
#root {
background-image: url(mosaic.png);
background-repeat: repeat;
background-size: auto;
width: 100%;
height: auto;
min-height: 1200px;
display: block;
}
#header {
position: static;
box-sizing: border-box;
top: 0;
width: 100%;
height: 80px;
display: display-flex;
box-align: center;
align-items: center;
justify-content: space-between;
padding: 0px 10px;
color: #cacaca;
background-color: #202020;
}
#mainSection {
display: border-box;
box-align: center;
background-color: #e9e7e7;
min-height: 800px;
position: relative;
width: 80%;
height: 90%;
text-align: left;
padding: 10px 10px;
margin: 0px auto auto auto;
box-shadow: -25px 0px 10px rgba(20, 20, 20, 0.5), 25px 0px 10px rgba(20, 20, 20, 0.5);
}
#gameeditor {
display: border-box;
box-align: center;
background-color: #e9e7e7;
min-height: 800px;
position: relative;
width: 80%;
height: 90%;
justify-content: center;
text-align: center;
padding: 10px 10px;
margin: 0px auto auto auto;
box-shadow: -25px 0px 10px rgba(20, 20, 20, 0.5), 25px 0px 10px rgba(20, 20, 20, 0.5);
}
figure {
border: thin #c0c0c0 solid;
display: flex;
flex-flow: column;
padding: 5px;
max-width: 900px;
margin: 10px 10px 10px 10px;
}
/*
#gameeditor {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-content: flex-start;
width: 80%;
margin: 0px auto auto auto;
height: auto;
min-height: 800px;
position: relative;
top: 0px;
}
*/