finished popup styling
This commit is contained in:
parent
1f5452b98a
commit
3b02d6a4b2
3 changed files with 42 additions and 10 deletions
|
@ -4,14 +4,17 @@
|
|||
padding: 0px;
|
||||
box-sizing: border-box;
|
||||
border-radius: 0px;
|
||||
color: #ECB365
|
||||
}
|
||||
|
||||
body
|
||||
{
|
||||
border: 5px solid #04293A;
|
||||
background-color: #041C32;
|
||||
display: grid;
|
||||
grid-template-rows: 1.5fr 1fr 3fr 2fr;
|
||||
width: 250px;
|
||||
margin: 0.5rem;
|
||||
grid-template-rows: 1.5fr 0.5fr 2.5fr 1fr;
|
||||
width: 275px;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
header
|
||||
|
@ -19,6 +22,8 @@ header
|
|||
display: grid;
|
||||
grid-template-columns: 8fr 1fr;
|
||||
align-items: baseline;
|
||||
border-bottom: 1px solid #064663;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
h1
|
||||
|
@ -36,6 +41,7 @@ h2
|
|||
{
|
||||
display: grid;
|
||||
grid-template-rows: 1fr 1fr;
|
||||
margin-bottom: -10px;
|
||||
}
|
||||
|
||||
#input-area
|
||||
|
@ -50,25 +56,34 @@ h2
|
|||
}
|
||||
|
||||
#token
|
||||
{
|
||||
border: none;
|
||||
background-color: #064663;
|
||||
color: #ECB365;
|
||||
}
|
||||
|
||||
#token::placeholder
|
||||
{
|
||||
border-width: 1px;
|
||||
background-color: #064663;
|
||||
color: #8d7553;
|
||||
}
|
||||
|
||||
#submit-token
|
||||
{
|
||||
border-width: 1px;
|
||||
background-color: white;
|
||||
border: none;
|
||||
background-color: #064663;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
#submit-token:hover
|
||||
{
|
||||
background-color: grey;
|
||||
background-color: #04293A;
|
||||
}
|
||||
|
||||
#submit-token:host()
|
||||
{
|
||||
background-color: rgb(85, 85, 85);
|
||||
background-color: #041C32;
|
||||
}
|
||||
|
||||
#settings-area
|
||||
|
@ -90,6 +105,20 @@ h2
|
|||
align-items: center;
|
||||
}
|
||||
|
||||
footer
|
||||
{
|
||||
border-top: 1px solid #064663;
|
||||
display: grid;
|
||||
grid-template-rows: repeat(3, 1fr);
|
||||
justify-items: right;
|
||||
}
|
||||
|
||||
a, a:visited
|
||||
{
|
||||
text-decoration: none;
|
||||
color: #2e94c3;
|
||||
}
|
||||
|
||||
/* The switch - the box around the slider */
|
||||
.switch {
|
||||
position: relative;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue