mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-11 02:12:53 +00:00
finished paging
This commit is contained in:
@@ -29,4 +29,7 @@
|
||||
pre {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
.btn{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
@import './utils.scss';
|
||||
|
||||
$linkColor: #3598db;
|
||||
$backgroundColor: #FFFFFF;
|
||||
|
||||
html {
|
||||
font-family: 'Roboto Slab', serif;
|
||||
@@ -9,6 +10,7 @@ html {
|
||||
overflow-y: scroll;
|
||||
}
|
||||
body {
|
||||
background-color: $backgroundColor;
|
||||
max-width: 100%;
|
||||
overflow-x: hidden;
|
||||
position: relative;
|
||||
@@ -79,3 +81,14 @@ hr {
|
||||
flex: 1;
|
||||
justify-content: center;
|
||||
}
|
||||
.btn{
|
||||
background-color: $backgroundColor;
|
||||
border: 1px solid #DADADA;
|
||||
border-radius: .2em;
|
||||
cursor: pointer;
|
||||
padding: .5em;
|
||||
|
||||
&:hover{
|
||||
background-color: #F3F3F3;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user