-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (66 loc) · 1.23 KB
/
style.css
File metadata and controls
67 lines (66 loc) · 1.23 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
*{
margin: 0;
padding: 0;
font-family: sans-serif;
}
header{
width: 100%;
height: 100vh;
background: url('img/santa1.jpg');
background-size: 100% 90%;
background-position: bottom;
position: relative;
}
body{
overflow: hidden;
}
nav{
width: 100%;
height: 100px;
padding: 0 70px;
background-color: aliceblue;
display: flex;
justify-content: space-between;
align-items: center;
}
.menu a{
text-decoration: none;
color: brown;
font-size: 20px;
padding: 10px 20px;
text-transform: uppercase;
}
.menu a:hover{
background-color: brown;
color: white;
}
.item-center{
align-items: center;
}
#htext{
max-width: 800px;
position: absolute;
top:50%;
left:50%;
transform: translate(-50%,-50%);
color:bisque;
}
#htext h1{
font-size: 5em;
font-style: italic;
text-shadow: 2px 3px 5px yellow;
}
#htext h2{
font-size: 3em;
font-style: italic;
text-shadow: 2px 3px 5px black;
text-align: center;
margin-top: 1em;
}
#htext h4{
font-size: 2em;
font-style: italic;
text-shadow: 2px 3px 5px black;
text-align: center;
margin-top: 1em;
}