-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
94 lines (77 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
/* styles.css */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 10;
padding: 100;
align-items: center;
justify-content: center;
height: 100vh;
}
form, .container {
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px;
margin: auto;
}
h2 {
text-align: center;
color: #3498db; /* Change heading color */
margin-bottom: 20px; /* Add margin at the bottom */
}
h1{
text-align: center;
}
label {
display: block;
margin-bottom: 8px;
}
input,
select {
width: 100%;
padding: 8px;
margin-bottom: 16px;
box-sizing: border-box;
}
button {
background-color: #4caf50;
color: #fff;
padding: 10px 15px;
border: none;
border-radius: 3px;
cursor: pointer;
}
/* Add other styles as needed */
/* Add this style to your existing CSS */
.logout-button {
display: inline-block;
padding: 10px 15px;
background-color: #e74c3c; /* Red color, you can change this */
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease; /* Add a smooth transition */
}
.logout-button:hover {
background-color: #c0392b; /* Darker red on hover, you can change this */
}
footer {
background-color: #f4f4f4;
padding: 10px;
margin-top: auto; /* Push the footer to the bottom */
}
p {
text-align: center;
margin-bottom: 10px;
}
a {
margin-top: 20px;
text-align: center;
color: #3498db;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}