-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
72 lines (57 loc) · 1.11 KB
/
main.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
* {box-sizing: border-box;}
html {
font-family: Arial, Helvetica, sans-serif;
overflow: hidden;
}
body {
margin: 0;
padding: 0;
height: 100%;
background-color: #f1f1f1;
}
iframe {
border: none;
}
.main-container {
display: flex;
margin-left: auto;
margin-right: auto;
margin-top: 16px;
padding: 0px 8px;
}
.card {
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),
0 2px 10px 0 rgba(0,0,0,0.12);
border-radius: 6px;
}
#header {
display: block;
width: 100%;
background-color: grey;
justify-content: center;
align-items: center;
text-align: center;
padding: 8px 0;
text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.8);
}
#menu {
float: left;
width: 33.33%;
background-color: rgb(255,158,97);
margin: 0px 8px;
padding: 8px;
}
#content {
float: left;
width: 66.66%;
margin: 0px 8px;
height: calc(66vw/16*9);
}
@media only screen and (max-height: 650px) {
#header {display: none;}
}
@media only screen and (min-width: 1400px) {
#content {
height: calc(1400px*0.6666/16*9)
}
}