-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathexercise2style.css
More file actions
75 lines (63 loc) · 1.12 KB
/
exercise2style.css
File metadata and controls
75 lines (63 loc) · 1.12 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
h1{
text-align: center;
}
#info{
font-family:'Times New Roman', Times, serif;
font-size: 15px;
font-weight: bold;
background-color:rgb(235, 144, 144);
padding:5px;
}
table{
width: 80%;
margin:40px;
font-family: Arial, sans-serif;
box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
}
#contact{
border: 3px solid;
height:40px;
width:100px;
text-align: center;
font-weight:bold;
font-size: 15px;
background-color: paleturquoise;
margin: 20px;
animation: mover;
animation-duration: 10s;
animation-iteration-count: infinite;
animation-delay: 1s;
animation-timing-function: ease;
}
@keyframes mover{
from{margin-left:0%;}
to{margin-left:100%;}
}
img{
float:right;
position:relative;
top:10px;
}
a{
position:relative;
top:10px;
}
form{
position:relative;
top:30px;
}
#music{
position: relative;
top:70px;
}
audio{
position:relative;
top:60px;
}
#video{
position: relative;
top: 100px;
}
body{
background-color:azure
}