-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (75 loc) · 1.39 KB
/
style.css
File metadata and controls
88 lines (75 loc) · 1.39 KB
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
body {
background-color: #4c555f;
font-family: sans-serif;
}
.container.main-container {
max-width: 900px;
margin: 50px auto;
padding: 20px;
background-color: #343a40;
color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.main-container h1 {
text-align: center;
margin-bottom: 20px;
}
#Form {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-bottom: 20px;
}
#Form input {
padding: 10px;
border: 1px solid #ced4da;
border-radius: 4px;
width: calc(33% - 10px);
box-sizing: border-box;
background-color: #495057;
color: white;
}
#Form input::placeholder {
color: #adb5bd;
}
#Form button {
padding: 10px 20px;
border: none;
border-radius: 4px;
background-color: #007bff;
color: white;
cursor: pointer;
}
#Form button:hover {
background-color: #0056b3;
}
.table-container {
margin-top: 30px;
}
.table-bordered {
width: 100%;
border-collapse: collapse;
background-color: white;
color: #212529;
}
.table-bordered th,
.table-bordered td {
border: 1px solid #dee2e6;
padding: 8px;
text-align: left;
}
.table-bordered th {
background-color: #f2f2f2;
}
@media (max-width: 768px) {
#Form input {
width: calc(50% - 10px);
}
}
@media (max-width: 576px) {
#Form input {
width: 100%;
}
}