-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistory.css
123 lines (105 loc) · 2.37 KB
/
history.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
118
119
120
121
122
123
/* main.css */
body {
font-family: Arial, sans-serif;
background-color: #f0f8ff; /* Change the background color to a light blue color */
margin: 0;
padding: 0;
}
h2 {
color: #1e90ff; /* Blue color for h2 */
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
background-color: #000; /* Black background for the table */
color: #fff; /* black text color for the table content */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow to the table */
}
table, th, td {
border: 1px solid #333; /* Darker gray border color */
}
th, td {
padding: 10px;
text-align: left;
}
th {
background-color: #1e90ff; /* Blue background for table headers */
color: white;
}
/* Back button style */
.back-button {
background-color: #1e90ff; /* Blue background for the button */
color: #333; /* Darker gray text color for the button */
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.back-button:hover {
background-color: #007acc; /* Darker blue on hover */
}
/* Add more CSS styles as needed */
/* demo.css */
body {
font-family: Arial, sans-serif;
background-color: #f0f8ff;
margin: 0;
padding: 0;
}
nav {
background-color: #1e90ff;
color: #fff;
display: flex;
justify-content: space-between;
padding: 10px;
}
nav a {
text-decoration: none;
color: #fff;
margin: 0 10px;
}
.menu-container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.menu-container h1 {
color: #1e90ff;
}
.menu-container label {
display: block;
margin-top: 10px;
color: #1e90ff;
}
.menu-container input[type="text"],
.menu-container input[type="number"] {
width: 100%;
padding: 10px;
margin-top: 5px;
border: 1px solid #ccc;
border-radius: 5px;
}
.menu-container button {
background-color: #1e90ff;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
margin-top: 20px;
cursor: pointer;
}
.menu-container button:hover {
background-color: #007acc;
}
footer {
text-align: center;
background-color: #1e90ff;
color: #fff;
padding: 10px 0;
bottom: 0;
width: 100%;
}