-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmain.css
More file actions
69 lines (62 loc) · 1.03 KB
/
main.css
File metadata and controls
69 lines (62 loc) · 1.03 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
body {
max-width: 960px;
margin: auto;
overflow-y: scroll;
}
.header {
display: flex;
height: 280px;
background-position: center;
align-items: center;
padding: 0 0 0 30px;
font-size: 30px;
font-weight: bolder;
color: white;
}
.menu {
padding: 10px 0 10px 0;
}
.tiledContent {
display: flex;
flex-wrap: wrap;
}
.contentTile {
width: 250px;
margin: 5px;
cursor: pointer;
}
.popup {
display: none;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: lightpink;
}
.popupHeader {
display: flex;
flex-direction: row-reverse;
padding: 0 8px 0 8px;
}
.popupHeader > span {
cursor: pointer;
}
@media only screen and (min-width: 600px) {
.popup {
height: 400px;
top: 50%;
left: 50%;
bottom: 50%;
right: 50%;
margin-top: -200px;
}
.small {
width: 400px;
margin-left: -200px;
}
.medium {
width: 600px;
margin-left: -300px;
}
}