-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (58 loc) · 1.08 KB
/
style.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
body{
background-color: bisque ;
}
div#layer1{
z-index: 1;
position: absolute;
top: 100px;
left: 100px;
width: 500px;
height: 350px;
background-color: green;
border: 1px solid blue;
padding: 20px;
border-radius: 15px;
}
div#layer2{
z-index: 2;
position: absolute;
top: 150px;
left: 150px;
width: 500px;
height: 350px;
background-color: orange;
border: 1px solid blue;
padding: 20px;
border-radius: 15px;
}
div#layer3{
z-index: 3;
position: absolute;
top: 200px;
left: 200px;
width: 540px;
height: 350px;
background-color: aqua;
border: 1px solid black;
padding: 20px;
border-radius: 15px;
}
/* Footer Design Css Code */
footer{
text-align: center;
font-size: 1.1rem;
font-weight: 900;
font-family: Arial, Helvetica, sans-serif;
padding: 20px;
margin-top: 15px;
}
/* Footer anchor tag Design CSS Code */
footer a{
color: red;
cursor: pointer;
}
/* Footer Link Visited Css Code */
footer a:hover{
text-decoration: none;
color: purple;
}