Spaces:
Configuration error
Configuration error
File size: 741 Bytes
7c5fedc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | * {
font-family: 'Fira Sans', sans-serif;
}
body {
background-color: #393c41;
text-align: center;
}
.navbar {
background-color: #313741;
}
a {
color: #00ADB5;
font-weight: 500;
}
a:hover {
color: #EEEEEE;
transition: all 2 s ease;
}
.navbar-brand {
font-size: 1.5rem;
}
.card {
background-color: #EEEEEE;
}
.btn-secondary {
border: none;
width: 10rem;
background-color: #00ADB5;
}
.btn-secondary:hover {
color: #00ADB5;
background-color: #222831;
transition: all 0.5s ease;
}
.card {
border-radius: 0.8em;
}
.card-body {
padding: 3rem;
}
.output {
color: #00ADB5;
}
select {
width: 10rem;
text-align: center;
margin-left: 10px;
}
|