rubygoldberg-tracker/watcher/static/index.css

59 lines
913 B
CSS
Raw Normal View History

2019-09-20 14:44:16 +00:00
body {
overflow: hidden;
background: #b6b6b5;
2019-09-23 13:05:18 +00:00
font-family: 'Roboto', sans-serif;
2019-09-20 14:44:16 +00:00
}
2019-09-20 13:02:28 +00:00
h1 {
color: blue;
}
2019-09-20 14:44:16 +00:00
.container {
display: flex;
flex-direction: row;
height: 100%;
padding: 10px;
}
.card {
flex-grow: 1;
margin: 15px;
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
height: 95%;
overflow: auto;
background: #fff;
border-radius: 6px;
display: flex;
flex-direction: column;
background: #e2e1e0;
width: 30%;
2019-09-23 13:05:18 +00:00
position: relative;
}
.card__title {
position: absolute;
bottom: 0;
right: 0;
color: darkslategrey;
font-size: 2.5rem;
font-weight: bolder;
padding: 10px;
text-transform: uppercase;
2019-09-20 14:44:16 +00:00
}
.item {
margin: 10px;
padding: 5px;
2019-09-20 15:02:04 +00:00
padding-left: 12px;
padding-right: 12;
2019-10-02 09:33:28 +00:00
min-height: 5%;
max-height: 5%;
2019-09-20 14:44:16 +00:00
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px;
background: #fff;
display: flex;
align-items: center;
justify-content: space-between;
}
2019-09-23 13:05:18 +00:00