18 lines
319 B
Sass
18 lines
319 B
Sass
@use "sass:color"
|
|
|
|
//$primary-color: #3399ff
|
|
$primary-color: cornflowerblue
|
|
$primary-color-highlight: color.adjust($primary-color, $lightness: -10%)
|
|
|
|
body
|
|
background: rgb(240, 235, 248)
|
|
|
|
table
|
|
border: 1px solid #666
|
|
|
|
#wrapper
|
|
background: white
|
|
padding: 1.5rem 2rem
|
|
border: 1px solid #bbb
|
|
border-radius: 8px
|