-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.css
More file actions
49 lines (41 loc) · 736 Bytes
/
Copy pathfeedback.css
File metadata and controls
49 lines (41 loc) · 736 Bytes
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
body {
background: url(img/b2.jpg);
background-size: cover;
background-position: center;
background-attachment: fixed;
}
p {
float: left;
width: 34vmax;
margin: 2vmax;
font-size: 3vmax;
line-height: 50px;
font-family: 'Squada One', cursive;
animation-name: ani;
animation-duration: 4s;
}
@keyframes ani {
from {line-height: 300px;}
to {line-height: 50px;}
}
#fform {
float: right;
width: 31vmax;
margin: 2vmax;
}
button:hover {
transform: scale(1.1);
}
button {
float: right;
}
input, textarea,button {
border: 2px solid black;
width: 30vmax;
padding: .5vmax 1vmax;
margin: 1vmax auto;
border-radius: 1%;
background-color: transparent;
font-size: 2vmax;
font-family: 'Squada One', cursive;
}