-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.css
63 lines (53 loc) · 903 Bytes
/
App.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
.app {
font-family: Arial, sans-serif;
text-align: center;
margin: 20px;
}
input {
width: 300px;
padding: 10px;
margin: 20px 0;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
outline: none;
}
input:focus {
border-color: #007bff;
box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
transition: box-shadow 0.3s ease-in-out;
}
ul {
list-style: none;
padding: 0;
}
li {
margin: 10px 0;
}
a {
text-decoration: none;
font-size: 18px;
color: #007bff;
}
a:hover {
text-decoration: underline;
color: #0056b3;
}
.fade-enter {
opacity: 0;
transform: translateY(-10px);
}
.fade-enter-active {
opacity: 1;
transform: translateY(0);
transition: opacity 300ms, transform 300ms;
}
.fade-exit {
opacity: 1;
transform: translateY(0);
}
.fade-exit-active {
opacity: 0;
transform: translateY(10px);
transition: opacity 300ms, transform 300ms;
}