forked from codewithkushagra/techhub-ranklist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (50 loc) · 1 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
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@600&family=Open+Sans:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mukta&family=Open+Sans&display=swap');
*{
padding:0;
margin: 0;
}
.logo{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.techhub-logo{
height:8em;
}
table {
font-family: 'Mukta', sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
h1{
font-family: 'Mukta', sans-serif;
text-align:center;
}
.main-content{
display:flex;
flex-direction: column;
margin-bottom: 2em;
width:100%;
justify-content: center;
align-items: center;
margin-top: 2em;
}
.table-container{
width:90vw;
margin-top: 2em;
}
@media only screen and (max-width:700px){
.techhub-logo{
height:5em;
}
}