-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
75 lines (65 loc) · 1 KB
/
Copy pathstyles.css
File metadata and controls
75 lines (65 loc) · 1 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
body {
margin: 0;
font-family: 'Roboto', sans-serif;
background-color: #f5f5f5;
color: #333;
}
header, main, footer {
text-align: center;
padding: 20px;
opacity: 0;
}
header {
background-color: #3498db;
color: #fff;
}
main {
margin: 20px auto;
}
.container {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
animation: growIn 0.8s ease-out;
}
input, textarea {
width: calc(100% - 22px);
padding: 10px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
textarea {
height: 150px;
}
button {
background-color: #3498db;
color: #fff;
border: none;
border-radius: 5px;
padding: 10px 20px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #2980b9;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes growIn {
from {
transform: scale(0.9);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}