html-tips-tricks/main.css

44 lines
551 B
CSS
Raw Normal View History

2020-08-13 07:00:06 +02:00
body {
background-color: #000000;
color: #ffffff;
2020-08-13 09:14:59 +02:00
font-family: 'Chilanka', cursive;
2020-08-13 07:00:06 +02:00
}
a {
color: #61dafb;
}
table {
border-collapse: collapse;
width: 100%;
}
th,
td {
padding: 8px;
text-align: left;
border-bottom: 1px solid #ddd;
}
2020-08-13 09:14:59 +02:00
li {
list-style: none;
}
2020-08-13 07:00:06 +02:00
.demo {
margin: 30px auto 30px auto;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
2020-08-13 09:14:59 +02:00
.demo .list li{
padding: 10px;
}
.demo .content-editable {
border: 1px solid;
border-radius: 5px;
padding: 10px;
}