-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.css
More file actions
91 lines (78 loc) · 1.47 KB
/
Copy pathgithub.css
File metadata and controls
91 lines (78 loc) · 1.47 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
89
90
91
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-color: #f0f4f8; /* subtle off-white for professionalism */
margin: 0;
padding: 0;
color: #333; /* neutral dark text */
line-height: 1.6;
}
.container {
width: 85%;
max-width: 1000px;
margin: 60px auto;
background-color: #ffffff;
padding: 40px;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h2 {
text-align: center;
margin-bottom: 25px;
color: #34495e; /* deep blue-gray for headings */
}
.search-box {
text-align: center;
margin-bottom: 20px;
}
input {
padding: 10px 12px;
width: 60%;
border: 1px solid #bbb;
border-radius: 4px;
transition: border-color 0.2s ease;
}
input:focus {
outline: none;
border-color: #0056b3;
}
button {
padding: 10px 20px;
border: none;
background-color: #0056b3; /* primary blue */
color: #fff;
cursor: pointer;
border-radius: 4px;
transition:
background-color 0.3s ease,
transform 0.1s ease;
font-weight: 600;
}
button:hover {
background-color: #004494; /* slightly darker */
transform: translateY(-1px);
}
button:active {
transform: translateY(0);
}
table {
width: 100%;
border-collapse: collapse;
}
th,
td {
padding: 10px;
border: 1px solid #ddd;
text-align: left;
}
th {
background-color: #0056b3; /* match button hover for consistency */
color: white;
}
a {
color: #0056b3;
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #004494;
}