-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.css
83 lines (73 loc) · 1.34 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
body {
background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("Images/background.jpg");
background-size: 90%;
background-position: 0% 25%;
color: #043C5B;
}
h1 {
margin-top: 5%;
text-transform: uppercase;
font-family: 'Podkova', serif;
font-size: 96px;
margin-bottom: 8%;
}
table {
margin-top: 5%;
margin-left: 10%;
}
#column1 {
width: 30%;
}
p {
font-family: 'Poppins', sans-serif;
font-size: 24px;
font-weight: 500;
margin-left: 2%;
}
.overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background-color: #d1b6b2;
overflow: hidden;
width: 0;
height: 100%;
transition: .5s ease;
}
.button:hover .overlay {
width: 100%;
}
button {
position: relative;
margin-left: 2%;
font-family: 'Poppins', sans-serif;
font-size: 36px;
font-style: italic;
font-weight: 500;
margin-top: 10%;
background-color: #FFECE9;
width: 456px;
height: 92px;
border-width: 4px;
border-style: solid;
color: #043C5B;
border-color: #043C5B;
transition: 0.3s;
}
button:hover {
background-color: #d1b6b2;
color: #01527e;
border-color: #01527e;
}
#person {
transform: rotate(15.11deg);
position: fixed;
bottom:30px;
left: 625px;
}
#tumbleweed {
position: fixed;
left: 1000px;
bottom: 0;
}