-
Notifications
You must be signed in to change notification settings - Fork 0
/
oc.css
70 lines (58 loc) · 931 Bytes
/
oc.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
html, body {
margin: 0;
padding: 0;
height: 100%;
}
a {
color: #EC6608;
font-size: 1.5rem;
text-decoration: none;
}
a:visited, a:active {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.oc-container {
display:flex;
justify-content: center;
align-items: center;
height: 100%;
}
.oc-content {
display: flex;
flex-direction: column;
align-items: center;
}
.oc-links {
display: flex;
flex-wrap: wrap;
flex-direction: column;
align-items: center;
}
.oc-link {
margin-bottom: 1rem;
margin-right: 1rem;
margin-left: 1rem;
text-align: center;
}
.oc-logo {
height: 250px;
}
@media screen and (max-width: 750px) {
.oc-logo {
height: 200px;
}
a {
font-size: 1.3rem;
}
}
@media screen and (max-width: 600px) {
.oc-logo {
height: 150px;
}
a {
font-size: 1.2rem;
}
}