You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
1.7 KiB
CSS
97 lines
1.7 KiB
CSS
body{
|
|
background-color: rgb(50,50,50);
|
|
color:whitesmoke;
|
|
padding:20px;
|
|
font-size: x-large;
|
|
text-align: left;
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
|
|
}
|
|
h1{
|
|
margin-top:0;
|
|
display: inline-block;
|
|
}
|
|
#version{
|
|
margin:5px;
|
|
}
|
|
input[type="text"]{
|
|
padding:10px;
|
|
border-radius: 5px;
|
|
outline: none;
|
|
border:none;
|
|
width:60%;
|
|
}
|
|
#save{
|
|
padding:10px;
|
|
border-radius: 8px;
|
|
border:none;
|
|
color:rgb(255, 255, 255);
|
|
background-color: rgb(56, 209, 56);
|
|
cursor: pointer;
|
|
}
|
|
#save:active{
|
|
background-color: rgb(41, 155, 41);
|
|
}
|
|
#top{
|
|
position:absolute;
|
|
top:10px;
|
|
right:10px;
|
|
display:flex;
|
|
}
|
|
#back, #restart{
|
|
text-decoration: none;
|
|
padding:8px;
|
|
border-radius: 10px;
|
|
margin:3px;
|
|
font-size: large;
|
|
cursor: pointer;
|
|
}
|
|
#back{
|
|
background-color: rgb(51, 177, 219);
|
|
color:white;
|
|
}
|
|
|
|
#restart{
|
|
background-color: rgb(210 69 27);
|
|
color:white;
|
|
}
|
|
a{
|
|
color:rgb(34, 136, 199);
|
|
cursor: pointer;
|
|
}
|
|
|
|
input[type="checkbox"]{
|
|
width:20px;
|
|
height:20px;
|
|
position: relative;
|
|
left:5px;
|
|
top: 5px;
|
|
}
|
|
|
|
#selectLocation{
|
|
padding:10px;
|
|
border:none;
|
|
border-radius: 10px;
|
|
font-size: large;
|
|
color:white;
|
|
background-color: rgb(56, 209, 56);
|
|
border-bottom: 4px solid rgb(41, 155, 41);
|
|
cursor: pointer;
|
|
position: relative;
|
|
}
|
|
#selectLocation:active{
|
|
border-bottom: none;
|
|
top: 4px;
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
select {
|
|
padding: 15px;
|
|
background-color: rgb(88, 232, 88);
|
|
border: none;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
font-size: large;
|
|
margin: 8px;
|
|
outline: none;
|
|
} |