mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2025-05-29 14:53:14 +00:00
Create a Django website
This commit is contained in:
parent
69170f19fb
commit
a71584ef98
60 changed files with 1344 additions and 1150 deletions
35
website/static/sass/styles/table.sass
Normal file
35
website/static/sass/styles/table.sass
Normal file
|
@ -0,0 +1,35 @@
|
|||
.table
|
||||
width: 100%
|
||||
border-radius: $radius
|
||||
overflow: hidden
|
||||
border: 1px solid $dark
|
||||
|
||||
table
|
||||
border: none
|
||||
border-collapse: collapse
|
||||
width: 100%
|
||||
|
||||
tr
|
||||
border: none
|
||||
border-bottom: 1px solid $dark
|
||||
|
||||
&:last-child
|
||||
border: none
|
||||
|
||||
th, td
|
||||
padding: 0.5rem
|
||||
text-align: left
|
||||
vertical-align: top
|
||||
border-right: 1px solid $dark
|
||||
|
||||
&:last-child
|
||||
border: none
|
||||
|
||||
th
|
||||
background: $dark
|
||||
color: $light
|
||||
|
||||
@media (max-width: 768px)
|
||||
.table table
|
||||
th, td
|
||||
padding: 0.25rem
|
Loading…
Add table
Add a link
Reference in a new issue