-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
53 lines (48 loc) · 1.21 KB
/
main.css
File metadata and controls
53 lines (48 loc) · 1.21 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
.header {
background-color: burlywood;
font-size: 3em;
color: aquamarine;
text-align: center;
padding-top: 2%;
padding-bottom: 2%;
top: 0;
}
.container {
background-color: aliceblue;
align-content: center;
padding-left: 33%;
padding-right: 33%;
padding-bottom: 5%;
padding-top: 5%;
}
.menu {
display: block;
}
.block {
position: relative;
padding: 5%;
color: aliceblue;
font-size: 2em;
display: inline;
background-color: darkgray;
border-radius: 5%;
-webkit-box-shadow: #717171 5px 5px 10px;
-webkit-transition: -webkit-transform 200ms ease-in-out, -webkit-box-shadow 200ms ease-in-out, text-shadow 200ms ease-in-out;
}
.block:hover {
cursor: pointer;
-webkit-transform: scale(1.1);
-webkit-box-shadow: #717171 15px 15px 30px;
text-shadow: aliceblue 1px 0 2px, aliceblue 0 1px 2px, aliceblue 1px 1px 2px,
aliceblue -1px 0 2px, aliceblue 0 -1px 2px, aliceblue -1px -1px 2px,
aliceblue -1px 1px 2px, aliceblue 1px -1px 2px;
}
.footer {
background-color: cadetblue;
font-size: 3em;
color: aquamarine;
text-align: center;
padding-top: 2%;
padding-bottom: 2%;
bottom: 0;
}