Last active
March 15, 2023 02:57
-
-
Save rheinardkorf/4c5c6abd70808ecf2c80ca0c4cfc473d to your computer and use it in GitHub Desktop.
Test Marp Markdown theme.
This file contains 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
/* @theme rk */ | |
@import 'default'; | |
h1, h2, h3 { | |
color: #ffffff; | |
} | |
section { | |
background-image: linear-gradient(to bottom, #67b8e3, #0288d1); | |
} | |
ul { | |
display: flex; | |
flex-direction: column; | |
list-image: none; | |
list-style: none; | |
margin: 0; | |
padding: 0; | |
gap: 0.2rem; | |
} | |
li { | |
color: rgba(255,255,255,0.95); | |
border: 1px solid rgba(255,255,255,0.3); | |
padding: 0.5rem; | |
background: rgba(255,255,255,0.05); | |
border-radius: 0.2rem; | |
} | |
section h1 { | |
color: #ffffff; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment