saucy/app/assets/stylesheets/application.css
Hugo Peixoto e9318b23d8 Small UI improvements
- Don't show dead ifthenpay link if there isn't one
- Remove actions from members#index in favor of members#show
- Display result count in members#index
- Increase table width in members#index
2023-02-26 13:03:36 +00:00

31 lines
597 B
CSS

/* Application styles */
body {
max-width: 1000px;
margin: 0 auto;
}
table {
border: 1px solid black;
border-collapse: collapse;
margin: 20px 0;
width: calc(100% - 42px);
}
td, th { padding: 10px; text-align: left; }
table.zebra tr:nth-child(2n) { background-color: #eee; }
table.lined tr:nth-child(n + 2) td { border-top: 1px solid #eee; }
ul {
padding-left: 5px;
margin: 0;
}
li { padding: 5px 0px; }
table.noborder { border: 0; margin: 0; }
nav ul { display: flex; flex-wrap: wrap; padding: 10px; list-style-type: none; gap: 20px; }
nav ul li { margin: 0; padding: 0; }