-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
105 lines (86 loc) · 1.33 KB
/
style.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
* {
font-family: 'Poppins', sans-serif;
}
.container {
width: 80%;
margin: auto;
}
.container-nav {
display: flex;
align-items: center;
}
nav {
margin-top: 15px;
}
nav .logo {
width: 30%;
margin-left: 5%;
}
nav .social {
width: 8%;
margin-left: 5px;
}
.socialIcons {
margin-left: 60%;
margin-right: 5%;
}
.heading {
text-align: center;
color: #323639;
}
.google {
color: #4285F4;
}
.cloud {
color: #F4B400;
}
.tier {
color: #EA4335;
}
.program {
color: #0F9D58;
}
#data-table-container {
overflow-x: auto;
margin: 0 auto;
border-radius: 50px;
padding: 70px 0;
border-bottom: 50px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#data-table {
max-width: 80%;
table-layout: fixed;
border-collapse: collapse;
margin: auto;
border-radius: 10px;
}
thead {
background-color: #4285F4;
color: white;
}
#data-table th {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
#data-table td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
.scrollable-table {
max-height: 70em;
overflow-y: auto;
}
#searchInput {
width: 200px;
margin: 15px auto;
margin-left: 40%;
padding: 5px 15px;
border-radius: 15px;
}
footer {
margin-top: 30px;
text-align: center;
}