FitTrackee/mpwo_client/src/components/App.css

195 lines
2.4 KiB
CSS
Raw Normal View History

.App {
background-color: #eaeaea;
min-height: 100vh;
2018-01-01 11:10:39 +01:00
text-align: center;
}
.App-logo {
animation: App-logo-spin infinite 20s linear;
height: 80px;
}
.App-header {
background-color: #222;
height: 150px;
padding: 20px;
color: white;
}
.App-title {
font-size: 1.5em;
}
.App-intro {
font-size: large;
}
2018-01-01 21:54:03 +01:00
.App-nav-profile-img {
max-width: 35px;
max-height: 35px;
border-radius: 50%;
2018-01-01 21:54:03 +01:00
}
.App-profile-img-small {
max-width: 150px;
max-height: 150px;
border-radius: 50%;
2018-01-01 21:54:03 +01:00
}
@keyframes App-logo-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
2017-12-31 18:43:24 +01:00
2018-01-01 11:10:39 +01:00
.card {
text-align: left;
}
2018-01-01 16:59:46 +01:00
label {
width: 100%;
}
input, textarea {
width: 100%;
}
2017-12-31 18:43:24 +01:00
.page-title {
font-size: 2em;
margin: 1em;
2017-12-31 18:43:24 +01:00
text-align: center;
}
2018-05-01 19:29:21 +02:00
2018-05-09 10:25:08 +02:00
.activity-card {
2018-05-10 17:21:19 +02:00
margin-bottom: 15px;
2018-05-09 10:25:08 +02:00
}
2018-05-16 23:52:55 +02:00
.activity-date {
font-size: 0.75em;
}
.activity-page {
margin-top: 20px;
}
2018-05-01 19:29:21 +02:00
.add-activity {
margin-top: 50px;
}
2018-05-03 14:07:31 +02:00
2018-05-16 23:52:55 +02:00
.admin-img {
max-width: 35px;
max-height: 35px;
}
.col-activity-logo{
padding-right: 0;
}
.fa-trophy {
color: goldenrod;
}
2018-05-03 14:07:31 +02:00
.leaflet-container {
2018-05-16 23:52:55 +02:00
height: 400px;
2018-05-03 14:07:31 +02:00
}
2018-05-08 18:20:41 +02:00
.radioLabel {
text-align: center;
}
.chart {
font-size: 0.9em;
}
.chart-info {
font-size: 0.8em;
font-style: italic;
}
.chart-radio {
display: flex;
font-size: 0.8em;
}
.chart-radio label {
display: flex;
}
.chart-radio input {
margin-right: 10px;
}
.chart-title {
font-size: 1.1em;
margin-bottom: 10px;
}
.custom-modal {
background-color: #fff;
border-radius: 5px;
max-width: 500px;
margin: 20% auto;
z-index: 1250;
}
.custom-modal-backdrop {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(0,0,0,0.3);
padding: 50px;
z-index: 1240;
}
2018-05-10 16:56:45 +02:00
.custom-fa {
margin-right: 5px;
}
2018-05-30 17:48:58 +02:00
.dashboard {
margin-top: 30px;
}
2018-05-16 23:52:55 +02:00
.sport-img {
max-width: 35px;
max-height: 35px;
}
2018-05-17 15:13:53 +02:00
.inactive-link {
color: lightgrey;
}
2018-05-20 13:12:35 +02:00
.record-logo {
margin-right: 5px;
max-width: 25px;
max-height: 25px;
}
.record-table table, .record-table th, .record-table td{
font-size: 0.9em;
padding: 0.1em;
}
2018-05-16 23:52:55 +02:00
.sport-img-medium {
max-width: 45px;
max-height: 45px;
}
2018-05-10 16:56:45 +02:00
.unlink {
color: black;
}
.loader {
animation: spin 2s linear infinite;
border: 16px solid #f3f3f3;
border-top: 16px solid #3498db;
border-radius: 50%;
height: 120px;
margin-left: 41%;
width: 120px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}