styling changes
This commit is contained in:
parent
08a9f0528d
commit
4752ebc803
2 changed files with 28 additions and 11 deletions
|
|
@ -31,7 +31,7 @@
|
|||
justify-content: space-between;
|
||||
align-items: center;
|
||||
background: vars.$base-colour;
|
||||
// background: linear-gradient(-2deg,vars.$base-colour 65%, vars.$highlight 100%);
|
||||
background: linear-gradient(1deg,vars.$base-colour 35%, vars.$highlight 100%);
|
||||
padding: 0 2px 0 1em;
|
||||
gap: 1em;
|
||||
}
|
||||
|
|
@ -42,15 +42,17 @@
|
|||
}
|
||||
.minimise {
|
||||
color: black;
|
||||
border: 1px solid black;
|
||||
background-color: #ac9b38;
|
||||
border: 2px solid #53461f;
|
||||
box-sizing: border-box;
|
||||
line-height: 32px;
|
||||
height: 40px;
|
||||
width: 40px;
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
text-align: center;
|
||||
margin-right: .4em;
|
||||
}
|
||||
.minimise:hover {
|
||||
background-color: #53461f;
|
||||
background-color: vars.$base-colour;
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -15,8 +15,8 @@
|
|||
<!-- about -->
|
||||
<Window name="about">
|
||||
<p>
|
||||
hello! ^w^/<br />welcome to my site, feel free to look around and learn something your government
|
||||
doesn't want you to know :3
|
||||
hello! ^w^/<br />welcome to my site, feel free to look around and learn something
|
||||
your government doesn't want you to know :3
|
||||
</p>
|
||||
</Window>
|
||||
|
||||
|
|
@ -45,7 +45,7 @@
|
|||
<td>placeholder</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>wanted for:</td>
|
||||
<td><span class="warning">wanted</span> for:</td>
|
||||
<td>placeholder</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
@ -100,21 +100,33 @@
|
|||
|
||||
<style lang="scss">
|
||||
@use '$lib/styles/variables' as vars;
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
td {
|
||||
padding: 1em;
|
||||
padding: 0.5em;
|
||||
padding-top: 0.8em;
|
||||
}
|
||||
td:nth-child(odd) {
|
||||
text-align: right;
|
||||
border: 1px solid;
|
||||
}
|
||||
td:nth-child(even) {
|
||||
border-bottom: 1px solid;
|
||||
}
|
||||
#mostwanted {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 1em;
|
||||
gap: 2em;
|
||||
h1 {
|
||||
color: vars.$warning;
|
||||
font-size: 3em;
|
||||
padding-top: .5em;
|
||||
padding-top: 0.5em;
|
||||
}
|
||||
h3 {
|
||||
text-align: center;
|
||||
font-size: 2em;
|
||||
}
|
||||
#profile {
|
||||
display: flex;
|
||||
|
|
@ -181,6 +193,9 @@
|
|||
width: 99px;
|
||||
height: 56px;
|
||||
}
|
||||
.warning {
|
||||
color: vars.$warning;
|
||||
}
|
||||
p {
|
||||
text-align: center;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue