-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPNL_Project.css
More file actions
39 lines (35 loc) · 766 Bytes
/
PNL_Project.css
File metadata and controls
39 lines (35 loc) · 766 Bytes
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
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css);
.section-container{
display: flex;
flex-direction: row;
flex-wrap: wrap;/*usefoul for mobile responsiveness*/
align-items: center;
justify-content: space-around;
}
#table-container{
min-width: 410px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
table{
padding: 0.5%;
margin: 0.5%;
border: 1px solid black;
display: inline-grid;
justify-items: center;
}
thead{
border-bottom: 1px solid black;
}
h4{
text-align: center;
font-family: 'Lato', sans-serif;
margin-top: 0px;
}
@media only screen and (max-width: 1125px) {
h4 {
margin-top: 1.33em;
}
}