-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
88 lines (74 loc) · 1.46 KB
/
Copy pathmain.css
File metadata and controls
88 lines (74 loc) · 1.46 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
body {
margin: 0;
padding: 0;
font-family: 'Cormorant Garamond';
}
.banner {
background-color: black;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
height: 30px;
}
.banner a {
color: white;
text-decoration: none;
margin-left: 20px;
}
.tool-links {
display: flex;
justify-content: flex-start;
align-items: center;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown .dropdown-content {
display: none;
position: absolute;
background-color: black;
z-index: 1;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown-content a {
color: white;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #f1f1f1;
color: black;
}
.main-container {
background: url('images/coolBg.png') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
image-rendering: pixelated;
}
h1 {
font-size: 5rem;
color: white;
text-align: center;
text-shadow: 2px 2px 4px #000000;
}
.description {
font-size: 1.5rem;
font-weight: bold;
color: white;
text-align: center;
text-shadow: 2px 2px 4px #000000;
}