-
Notifications
You must be signed in to change notification settings - Fork 98
/
styles.css
84 lines (83 loc) · 1.31 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
body{
font-family: 'Poppins', sans-serif;
font-size: 13px;
padding-top: 5%;
overflow-x: hidden;
}
#info{
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
padding-left: 15%;
}
#info h1, p{
margin: 5px;
}
#totalDatasetsP{
padding-left: 15%;
color: rgb(0, 190, 0);
}
#data{
width:100%;
display: flex;
flex-direction: column;
align-items: center;
}
#datasetContainer{
display: block;
width: 1280px;
height: 1200px;
box-shadow: 0 5px 5px rgb(0, 0, 0,0.2);
}
.datasetItem{
width: 1200px;
height: 100px;
padding: 2% 3%;
border-bottom: 1px solid rgb(214, 214, 214);
}
.datasetItem:hover{
background-color: #f0f0f0;
}
.fa{
font-size: 20px;
color: #1c9dfc;
}
h2{
display: inline;
margin-left: 10px;
}
.actions{
display: flex;
flex-direction: row;
align-items: center;
}
.actions i, p{
margin-inline: 10px;
}
.actions a{
text-decoration: none;
}
@media screen and (max-width: 700px) {
#info{
padding-left: 2%;
}
#totalDatasetsP{
padding-left: 2%;
}
#datasetContainer{
width: 95%;
}
.datasetItem{
width: 95%;
}
p{
font-size: 8px;
}
.fa{
font-size: 15px;
}
h2{
font-size: 12px;
}
}