Created
May 15, 2020 19:52
-
-
Save clintonyeb/43218b912ea70bd62181a3e2dacd0639 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h1 { | |
font-size: 30px; | |
color: #fff; | |
text-transform: uppercase; | |
font-weight: 300; | |
text-align: center; | |
margin-bottom: 15px; | |
} | |
table { | |
width: 100%; | |
table-layout: fixed; | |
} | |
thead { | |
background-color: rgba(255, 255, 255, 0.3); | |
} | |
.tbody { | |
height: 300px; | |
overflow-x: auto; | |
margin-top: 0px; | |
border: 1px solid rgba(255, 255, 255, 0.3); | |
} | |
th { | |
padding: 20px 15px; | |
text-align: left; | |
font-weight: 500; | |
font-size: 12px; | |
text-transform: uppercase; | |
} | |
td { | |
padding: 15px; | |
text-align: left; | |
vertical-align: middle; | |
font-weight: 300; | |
font-size: 12px; | |
border-bottom: solid 1px rgba(255, 255, 255, 0.1); | |
} | |
/* demo styles */ | |
@import url(https://fonts.googleapis.com/css?family=Roboto:400); | |
body { | |
background: -webkit-linear-gradient(left, #25c481, #25b7c4); | |
background: linear-gradient(to right, #25c481, #25b7c4); | |
font-family: "Roboto", sans-serif; | |
} | |
.is-white { | |
color: white; | |
} | |
.is-danger { | |
color: red; | |
} | |
.is-warning { | |
color: yellow; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment