-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
107 lines (90 loc) · 1.53 KB
/
Copy pathmain.css
File metadata and controls
107 lines (90 loc) · 1.53 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
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
body {
margin: 0;
position: relative;
}
body > div {
max-width: 1000px;
margin: auto;
}
a {
cursor: pointer;
}
#header {
display: flex;
justify-content: flex-start;
align-items: center;
height: 280px;
padding-left: 5%;
}
#header h1 {
color: white;
}
#content {
display: flex;
flex-wrap: wrap;
}
.contentTile {
aspect-ratio: 5 / 3;
}
.contentTile.clickableTile {
cursor: pointer;
}
.contentTileCore h4 {
color: darkblue;
font-size: 16px;
font-weight: bold;
margin: 20px 0 20px 0;
}
@media only screen and (min-width: 801px) {
.contentTile {
width: 33.3%;
}
}
@media only screen and (max-width: 800px) {
.contentTile {
width: 50%;
}
}
@media only screen and (max-width: 500px) {
.contentTile {
width: 100%;
}
}
.contentTileCore {
display: flex;
flex-direction: column;
align-items: center;
margin: 10px;
background-color: lightgrey;
width: calc(100% - 20px);
height: calc(100% - 20px);
}
#menu {
/* height: 24px; */
display: flex;
padding: 10px 0 10px 0;
}
#menu > a {
align-self: center;
text-decoration: none;
color: inherit;
padding: 3px 6px 3px 6px;
opacity: 0.5;
}
#menu > a.selected {
opacity: 1;
}
.popup {
display: none;
position: fixed;
border-style: solid;
background-color: white;
}
.popup .headerClose {
padding: 3px 10px 3px 10px;
cursor: pointer;
}
.popup .popupHeader {
display: flex;
flex-direction: row-reverse;
}