-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
73 lines (65 loc) · 1.07 KB
/
styles.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
#MainTourText {
color: white;
font-family: 'Poppins', sans-serif;
font-size: 400%;
position: relative;
}
#TreeNameText
{
color: white;
font-family: 'Poppins', sans-serif;
font-size: 100%;
position: relative;
}
#TreeInfoText
{
color: white;
font-family: 'Poppins', sans-serif;
font-size: 50%;
position: relative;
}
html,body {
margin:0;
padding:0;
}
#TreeImg
{
width: 20%;
}
#bottom
{
display: table;
text-align: center;
line-height: 0%;
width: 100%;
height: 20%;
top:80%;
position: fixed;
border-style: solid;
background-color: #4B08A1;
transition: 0.5s;
}
#NextButton,
#HereButton,
#BackButton
{
background-color: #4CAF50; /* Green */
border: 2px;
border-color: black;
color: white;
padding: 0.75% 2%;
margin-top: 30px;
text-align: center;
text-decoration: none;
display: inline-block;
font-family: 'Poppins', sans-serif;
font-size: 30%;
transition-duration: 0.4s;
}
#NextButton:hover,
#HereButton:hover,
#BackButton:hover
{
background-color: white;
color: #4CAF50;
}