jbrowse-testing/reagent-test/public/css/site.css

84 lines
1.1 KiB
CSS
Raw Normal View History

2023-02-04 19:00:37 -08:00
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
2023-02-04 14:49:44 -08:00
body {
2023-02-04 19:00:37 -08:00
font-family: 'Inter', sans-serif;
2023-02-04 14:49:44 -08:00
max-width: 600px;
margin: 0 auto;
padding-top: 72px;
-webkit-font-smoothing: antialiased;
font-size: 1.125em;
color: #333;
line-height: 1.5em;
}
h1, h2, h3 {
color: #000;
}
h1 {
font-size: 2.5em
}
h2 {
font-size: 2em
}
h3 {
font-size: 1.5em
}
a {
text-decoration: none;
color: #09f;
}
a:hover {
text-decoration: underline;
}
.button-container {
display: flex;
flex-direction: row;
}
.menu {
position: absolute;
}
2023-02-04 19:00:37 -08:00
.menu-dropdown-item {
2023-02-04 14:49:44 -08:00
width: 5rem;
}
2023-02-04 19:00:37 -08:00
.menu-button {
font-size: 12pt;
background-color: #efefef;
border-color: black;
border-width: 1px;
}
.menu-button:hover {
background-color: #dedede;
}
.searchbar {
font-size: 14pt;
padding: 2px 8px;
}
.searchbar:focus {
outline: #000;
outline-width: 4px;
}
.button-primary {
border-radius: 6px;
border: none;
padding: 6px 10px;
background-color: black;
color: white;
font-weight: 600;
}
.button-primary:hover {
background-color: #353535;
cursor: pointer;
}