-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (92 loc) · 1.46 KB
/
style.css
File metadata and controls
92 lines (92 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
86
87
88
89
90
91
92
*{
font-family: 'Sansita Swashed', cursive;
}
body{
background: rgb(30,125,43);
background: linear-gradient(13deg, rgba(30,125,43,1) 21%, rgba(33,205,108,1) 76%);
overflow:hidden;
}
div#information h1{
font-size: 50px;
}
div#homepage{
display: flex;
height: 100%;
justify-content: space-evenly;
}
button{
cursor: pointer;
}
div#information{
display: inline-block;
border: 5px solid black;
background-color: white;
width: 40%;
}
div#information p{
font-size: 25px;
text-align: center;
}
div#buttonPick button{
margin: 10px auto;
font-size: 25px;
display: block;
font-weight: bolder;
}
div#buttonPick{
text-align: center;
}
div#pictures{
display: inline-block;
}
button#button1{
background: url("Rhino2.jpg");
}
button#button2{
background: url("whale.jpg");
}
button#button3{
background: url("polarBear.jpeg");
}
div#animalPick button:hover{
filter: blur(0px);
}
div#animalPick{
display: flex;
height: 100%;
}
div#animalPick button{
flex-grow: 1;
background-size: auto 100%;
background-repeat: no-repeat;
background-position: center;
filter: blur(10px);
}
div#rhino{
text-align: center;
font-size: 25px;
}
div#greyWhale{
text-align: center;
font-size: 25px;
}
div#polarBear{
text-align: center;
font-size: 25px;
}
div#creditLinks{
text-align: center;
margin: 10px auto;
}
div#creditLinks button{
text-align: center;
margin: 10px auto;
display:block;
font-size: 30px;
}
div#creditLinks button:hover{
background: #99afa3;
}
h1{
text-align: center;
}