-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
117 lines (99 loc) · 1.46 KB
/
styles.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #E0F7FA;
font-family: 'Poppins', sans-serif;
margin: 0;
}
.container {
text-align: center;
padding: 50px;
max-width: 600px;
width: 100%;
}
h1 {
color: #0097A7;
margin: 0 0 24px;
font-size: 32px;
}
h2 {
color: #0097A7;
margin: 0 0 24px;
font-size: 28px;
}
p {
color: #333;
margin: 0 0 24px;
font-size: 18px;
}
button.btn {
background-color: #0097A7;
color: #fff;
border: none;
padding: 14px 28px;
margin: 10px;
border-radius: 32px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.3s ease;
}
button.btn:hover {
background-color: #00838F;
transform: translateY(-2px);
}
input#search-input {
border: 2px solid #0097A7;
padding: 12px 24px;
border-radius: 32px;
font-size: 18px;
outline: none;
transition: border-color 0.3s ease;
}
input#search-input:focus {
border-color: #00838F;
}
.hidden {
display: none;
}
.fade-in {
animation: fadeIn 0.5s forwards;
}
.fade-out {
animation: fadeOut 0.5s forwards;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
#error-message {
color: #E53935;
font-size: 16px;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
padding: 10px;
background: transparent;
}
footer a {
margin: 0 15px;
display: inline-block;
font-size: 20px;
color: #0097A7;
}