forked from BigDataBiology/magsview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (94 loc) · 1.94 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
106
107
108
109
110
111
112
113
114
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: 400 !important;
margin: 0;
padding: 0;
}
.app {
display: flex;
flex-direction: column;
min-height: 93vh;
}
.actionButton {
padding: 10px;
border-radius: 10px;
border-width: 0px;
}
.actionButton a {
color: black;
font-weight: 500;
}
.navbar {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid rgb(150, 141, 141);
padding: 20px;
}
.navbar_links a {
padding: 10px;
}
.navbar_title a {
text-decoration: none;
color: black;
}
.bottomNav {
padding: 20px;
border-top: 1px solid rgb(150, 141, 141);
}
.indexPage_aboutSection {
background-image: url('./public/about_us_img.jpg');
background-size: cover;
text-align: center;
color: rgb(255, 255, 255);
padding: 150px;
}
.genomesPage_aboutSection {
background-image: url('./public/genomes_about_img.jpg');
background-size: cover;
text-align: center;
color: white;
padding: 100px;
}
.genomesPage_dashboard {
padding: 20px;
}
.genomesPage_dashboard ul {
list-style: none;
}
.taxonomyPage_aboutSection {
background-image: url('./public/taxonomy_about_img.jpg');
background-size: cover;
text-align: center;
color: white;
padding: 100px;
}
.indexPage_exploreSection {
text-align: center;
}
.indexPage_exploreSection_element {
padding: 40px;
}
.indexPage_exploreSection_element_description {
padding: 10px;
list-style-type: none;
}
@media only screen and (max-width: 420px) {
.navbar {
display: block;
text-align: center;
}
.navbar a {
padding: 5px;
}
}
@media only screen and (max-width: 660px) {
.indexPage_aboutSection h1 {
font-size: 25px;
}
.indexPage_aboutSection {
padding: 50px;
}
}