-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterm-styels.css
51 lines (45 loc) · 918 Bytes
/
term-styels.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
body {
background: linear-gradient(135deg, #4E78E7, #8134AF);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
color: #000;
overflow: hidden;
}
h2, p {
text-align: center;
margin: 20px 0;
opacity: 0;
transform: translateY(-20px);
animation: fadeInUp 1s forwards;
}
a {
text-decoration: none;
color: #10063;
}
.button {
display: inline-block;
padding: 12px 24px;
font-size: 18px;
font-weight: bold;
background-color: #007BFF;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.button:hover {
background-color: #0056b3;
}
img {
vertical-align: middle;
background-color: #fff;
padding: 5px;
border-radius: 5px;
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}