-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.css
110 lines (89 loc) · 1.77 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
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
108
109
:root {
--blue: rgba(52, 81, 166, 0.8);
--darkblue: rgba(27, 42, 88, 0.8);
}
h1,h2,h3,h4,h5,p,a,li,span {
font-family: "Open Sans", sans-serif;
color: #fff;
text-align: center;
margin: 5px;
text-decoration: none;
}
h1 {
font-size: 1.5em;
font-weight: 200;
}
h2,h3 {
font-weight: 200;
font-size: 1em;
}
p {
font-size: 0.5em;
}
body {
background-color: #000000;
margin: 0 0 20px 0;
background-image: url("images/bglogo1.png");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
height: 100%;
}
.list-wrapper {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100%;
}
.item {
margin: 0.7rem 0.5rem;
font-size: 1.5em;
text-align: center;
border-radius: 0.1rem;
width: 50%;
background-color: var(--blue);
border-radius: 0.1em;
box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
link {
text-decoration: none;
text-decoration-color: #000000;
padding: 0;
}
.center-horizontal {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100%;
}
.header {
border-radius: 0.1em;
box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.5);
background-color: rgba(52, 81, 166, 0.5);
padding: 0.5em;
width: 50%;
}
.floating {
border-radius: 0.1em;
box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 600px) {
.item {
width: 90%;
}
.header {
width: 90%;
}
}
.headerdiv {
margin-top: 2%;
}