Files
kontor/kontor-piccolo/static/main.css
T
Thomas Peetz 37e094e390
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s
add kontor-blacksheep and kontor-piccolo as blueprints for new app
2026-06-03 15:59:59 +02:00

67 lines
1.0 KiB
CSS

body, html {
padding: 0;
margin: 0;
}
body {
background-color: #f0f7fd;
color: #2b475f;
font-family: 'Open Sans', sans-serif;
}
div.hero {
background-color: #4C89C8;
box-sizing: border-box;
padding: 5rem;
}
a {
color: #4C89C8;
text-decoration: none;
}
div.hero h1 {
color: white;
font-weight: normal;
text-align: center;
}
section {
padding-bottom: 2rem;
}
div.content {
background-color: white;
border-radius: 0.5rem;
box-sizing: border-box;
margin: 1rem auto;
max-width: 50rem;
padding: 2rem;
transform: translateY(-4rem);
box-shadow: 0px 1px 1px 1px rgb(0,0,0,0.05);
}
div.content h2, div.content h3 {
font-weight: normal;
}
div.content code {
padding: 2px 4px;
background-color: #f0f7fd;
border-radius: 0.2rem;
}
p.code {
background-color: #233d58;
color: white;
font-family: monospace;
padding: 1rem;
margin: 0;
display: block;
border-radius: 0.2rem;
}
p.code span {
display: block;
padding: 0.5rem;
}