mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-06-25 16:04:37 -05:00
Started CSS and Layout upgrades
Functionality is coming along at a good pace, so it was time to start adjusting the templates and styles to the new layout. Responsive will come after all of the pages have been updated.
This commit is contained in:
@ -1,58 +1,43 @@
|
||||
section[role="start"] {
|
||||
background-image: url("../../images/global/special-trash.jpg");
|
||||
height: 100%;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
section[role="start"] div[role="index-wrapper"] {
|
||||
margin: 0 auto;
|
||||
section.index-search {
|
||||
width: 100%;
|
||||
background: var(--white);
|
||||
}
|
||||
|
||||
section[role="start"] div[role="index-search"] {
|
||||
width: 100%;
|
||||
border-bottom: 1px solid var(--secondary);
|
||||
}
|
||||
|
||||
section[role="start"] div[role="index-results"] {
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
background: rgb(var(--primary-rgb) / 60%);
|
||||
border-bottom: 1px solid var(--white);
|
||||
}
|
||||
|
||||
section[role="start"] div input[type="text"] {
|
||||
background: none;
|
||||
font-weight: bold;
|
||||
font-size: 3.5em;
|
||||
width: 91%;
|
||||
color: var(--white);
|
||||
text-shadow: 1px 1px 1px var(--primary);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
section[role="start"] div button {
|
||||
vertical-align: text-bottom;
|
||||
width: 57px;
|
||||
height: 57px;
|
||||
}
|
||||
|
||||
section[role="start"] div button i {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
section[role="start"] h1 {
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
section[role="start"] a.search-link {
|
||||
section.start a.search-link {
|
||||
color: var(--highlight);
|
||||
font-size: 2.5em;
|
||||
font-weight: bold;
|
||||
border: 0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
form.index-search-form {
|
||||
width: 80%;
|
||||
max-width: 1000px;
|
||||
margin: 0 auto;
|
||||
padding: 30px 0;
|
||||
}
|
||||
|
||||
input[type="text"]:focus {
|
||||
outline: solid var(--highlight);
|
||||
background-color: var(--highlight);
|
||||
}
|
||||
|
||||
form.index-search-form > input[type="text"] {
|
||||
width: 91%;
|
||||
height: 50px;
|
||||
font: 44px var(--base-type);
|
||||
transition: all 0.2s linear;
|
||||
}
|
||||
|
||||
form.index-search-form > button {
|
||||
height: 60px;
|
||||
width: 60px;
|
||||
position: relative;
|
||||
top: 9px;
|
||||
}
|
||||
|
||||
::placeholder {
|
||||
/* Chrome, Firefox, Opera, Safari 10.1+ */
|
||||
color: var(--highlight);
|
||||
}
|
||||
|
Reference in New Issue
Block a user