simplex/static/main.css

32 lines
393 B
CSS
Raw Normal View History

2018-04-24 17:20:50 +00:00
.collapsible {
width: 100%;
2018-04-24 22:02:13 +00:00
text-align: left;
cursor: pointer;
2018-04-24 17:20:50 +00:00
}
.content {
2018-04-24 22:02:13 +00:00
padding: 1rem;
background-color: #eee;
2018-04-24 17:20:50 +00:00
display: none;
overflow: hidden;
}
2018-04-25 01:08:06 +00:00
.delete, .error {
background-color: red;
border-color: red;
2018-04-25 01:33:18 +00:00
color: white;
}
2018-04-25 03:44:44 +00:00
2018-04-25 03:46:11 +00:00
h1 {
text-align: center;
}
2018-04-25 03:44:44 +00:00
.btns {
2018-05-02 00:28:56 +00:00
display: flex !important;
2018-05-02 00:32:09 +00:00
justify-content: center;
2018-05-02 00:35:00 +00:00
flex-wrap: wrap;
2018-05-02 00:28:56 +00:00
}
.btns > a {
margin: 1rem;
2018-04-25 03:44:44 +00:00
}