-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
130 lines (123 loc) · 2.48 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
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
124
125
126
127
128
129
130
:root {
--primary-color: #184c84;
--secondary-color: #ffffff;
--border-color: #e0e0e0;
--table-header-bg: #f5f5f5;
--table-hover-bg: #f0f8ff;
--button-hover-color: #4578af;
--button2-hover-color: #398fa2;
--font-family: "Segoe UI", Arial, sans-serif;
}
body {
width: 100%;
max-width: 910px;
margin: 0 auto;
font-family: var(--font-family);
text-align: center;
background-color: var(--secondary-color);
}
a {
text-decoration: none;
}
a:hover {
color: var(--primary-color);
}
a:visited {
color: var(--primary-color);
}
table {
width: 100%;
border-collapse: collapse;
}
.table-container {
border: 1px solid var(--border-color);
border-radius: 8px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
thead {
background-color: var(--table-header-bg);
}
th,
td {
padding: 8px;
text-align: center;
border-bottom: 1px solid var(--border-color);
}
th {
font-weight: 600;
font-size: 0.9em;
text-transform: uppercase;
color: #333333;
}
tbody tr {
transition: background-color 0.25s ease;
}
tbody tr:hover {
background-color: var(--table-hover-bg);
}
tbody tr:last-child td {
border-bottom: none;
}
.button,
.button2 {
display: inline-block;
padding: 8px;
margin-top: 1px;
background-color: var(--secondary-color);
border: 1px solid var(--primary-color);
color: var(--primary-color);
transition: background-color 0.25s ease, color 0.25s ease;
}
.button {
border-radius: 8px;
width: 160px;
}
.button2 {
width: 80px;
}
.button2:first-child {
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
}
.button2:last-child {
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
}
.button2 + .button2 {
border-left: none;
}
.button:hover,
.button:focus {
background-color: var(--button-hover-color);
color: var(--secondary-color);
}
.button2:hover,
.button2:focus {
background-color: var(--button2-hover-color);
color: var(--secondary-color);
}
footer {
font-size: 13px;
}
.logo {
max-width: 100%;
width: 400px;
height: auto;
margin-left: -25px;
margin-top: 15px;
object-fit: contain;
transition: transform 0.2s ease;
}
.logo:hover {
transform: scale(1.10);
}
.social {
margin: 12px;
max-height: 30px;
max-width: 30px;
transition: transform 0.25s ease;
}
.social:hover {
transform: scale(1.25);
}