-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
114 lines (98 loc) · 2.31 KB
/
home.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
/* home.css */
body {
margin: 0;
padding: 0;
background-color: #333; /* Darkish grey background color */
color: #fff; /* Text color */
}
.container {
width: 100%;
padding: 20px;
box-sizing: border-box;
}
.notification-title {
text-align: center;
font-size: 36px;
font-weight: bold;
margin-bottom: 20px;
}
.table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
th, td {
border: 1px solid #ddd;
padding: 10px;
text-align: left;
color: #fff; /* Text color for table cells */
}
th {
background-color: #555; /* Darker grey background color for table header */
}
.NewAdmin {
display: block;
margin: 20px auto;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
background-color: #fff; /* White background color for the button */
color: #333; /* Darkish grey text color for the button */
border: none;
border-radius: 5px;
}
.modal {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
background-color: #fff;
padding: 20px;
border-radius: 5px;
position: relative;
}
.close {
position: absolute;
top: 10px;
right: 10px;
font-size: 20px;
cursor: pointer;
color: #333; /* Darkish grey text color for the close button */
}
.modal h2 {
text-align: center;
margin-bottom: 20px;
}
form {
display: flex;
flex-direction: column;
}
label {
margin-bottom: 5px;
color: #333; /* Darkish grey text color for labels */
}
input {
margin-bottom: 10px;
padding: 8px;
}
.submit {
background-color: #fff; /* White background color for the submit button */
color: #333; /* Darkish grey text color for the submit button */
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
/* Additional styling for the "Driver's information" heading */
.notification-title {
font-size: 36px;
font-weight: bold;
color: #fff; /* Text color for the heading */
}