-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
90 lines (77 loc) · 1.38 KB
/
index.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
* {
font-family: 'Arial', sans-serif;
}
html, body {
padding: 0;
margin: 0;
}
html{
height: 100%;
}
body {
min-height: 100%;
}
header {
background: #000054;
height: 100vh;
}
@media only screen and (max-height: 800px) {
header {
height: 800px;
}
}
.header-img {
width: 100%;
box-shadow: 0 0 8px 0;
-webkit-box-shadow: 0 0 8px 0;
-o-box-shadow: 0 0 8px 0;
-moz-box-shadow: 0 0 8px 0;
}
.description {
color: #fff;
text-align: center;
margin-top: 0;
}
.header-title {
text-align: center;
font-weight: 900;
color: #fff;
padding: 50pt 50pt 10pt;
margin: 0;
}
.flex-container {
display: flex;
display: -webkit-flex;
display: -o-flex;
display: -ms-flex;
display: -moz-flex;
display: -ms-flexbox;
justify-content: space-evenly;
}
.item {
text-align: center;
text-align: -moz-center;
text-align: -webkit-center;
width: 30%;
text-decoration: none;
color: #000;
background: #fff;
margin-top: 50pt;
padding: 50pt 10pt;
font-weight: 700;
box-shadow: 0 3px 8px 0 #000;
-webkit-box-shadow: 0 3px 8px 0 #000;
-o-box-shadow: 0 3px 8px 0 #000;
-moz-box-shadow: 0 3px 8px 0 #000;
}
.item:hover {
background: #cdcdcd;
}
.main-item {
color: #fff;
background: #0078ff;
}
.main-item:hover {
color: #000;
background: #50d2ff;
}