-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
114 lines (96 loc) · 1.7 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
body {
margin: 0;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f9f9f9;
}
.container {
text-align: center;
background: #fff;
padding: 2rem;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
header {
margin-bottom: 2rem;
}
.logo-container {
display: flex;
justify-content: center;
}
.logo-image {
width: 150px; /* Adjust the size as needed */
height: auto;
}
main h1 {
font-size: 2rem;
margin-bottom: 1rem;
}
main p {
margin-bottom: 1.5rem;
color: #555;
}
.form-container {
margin-top: 2rem;
}
form {
display: flex;
justify-content: center;
align-items: center;
gap: 0.5rem;
}
input[type="email"] {
padding: 0.5rem;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 5px;
width: 250px;
}
button {
padding: 0.5rem 1rem;
font-size: 1rem;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
p {
margin-top: 1rem; /* Add some space above the paragraph */
}
a {
text-decoration: none; /* Remove underline */
color: #007bff; /* Set link color */
font-weight: bold; /* Make the text bold */
}
a:hover {
text-decoration: underline; /* Add underline on hover */
}
.notification {
position: fixed;
top: 20px;
left: 50%;
transform: translateX(-50%);
padding: 10px 20px;
border-radius: 5px;
/* color: #fff; */
font-weight: bold;
z-index: 9999;
opacity: 1;
transition: opacity 0.5s ease-in-out;
}
.notification.error {
background-color: #ff4d4f;
}
.notification.success {
background-color: #52c41a;
}
.notification.show {
opacity: 1;
}