Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

css improvements #127

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 22 additions & 11 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@
display: block;
font-size: 1rem;
background-color: green;
border-radius: .3em;
margin:2% 20%;
line-height: 2.5rem;
padding: 1%;
line-height: 2rem;
padding: .8em;
color: #ffff;
}
.instructions{
background-color: #fff;
color: #000;
border-radius: .2em;
padding: 4%;
}
.instructions h1{
Expand Down Expand Up @@ -66,25 +68,24 @@ a {
}

nav {
border-color: black;
border-radius: 10px 100px / 120px;
border-style: groove;
border-width: 7px;
border-radius: 0 0 .3em .3em;
background: whitesmoke;
margin: auto;
padding: 3px;
text-align: center;
padding: .5em !important;
text-align: center;
}

button {
outline: none;
border: 4px solid green;
padding: 10px 20px;
border-radius: .3em;
font-size: 1rem;
margin-left: .1em;
font-weight: bold;
background: none;
transition: all 0.2s ease-in-out;
color: #f80606;
color: #fff;
}
button:hover {
cursor: pointer;
Expand Down Expand Up @@ -415,11 +416,21 @@ pre {
/* light and dark more style */
body {
padding: 25px;
background:gray;
background:#999;
color: black;
font-size: 25px;
}

body::-webkit-scrollbar {
width: 12px; /* width of the entire scrollbar */
}
body::-webkit-scrollbar-track {
background: transparent; /* color of the tracking area */
}
body::-webkit-scrollbar-thumb {
background-color: #fff; /* color of the scroll thumb */
border-radius: 20px; /* roundness of the scroll thumb */
border: 3px solid rgba(0,0,0,0.1);
}
thead{
background-color: lightblue
}
Expand Down