/*
Name: Michael Zhao
Date: 04.17.18
Section: CSE 154 AD

This is the index.css meant to style the various aspects of the index.html such as
the text, images, and various content sections in the webpage. 

*/

@import url('https://fonts.googleapis.com/css?family=Acme');

h1 {
  font-family: "Acme", monospace;
}

.flex {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.recent {
  background-color: gray;
}

div p {
  font-size: 10px;
  margin-left: 30px;
  align-self: flex-end;
}

section img {
  height: 50px;
  width: 40px;
}

.overtime {
  filter: saturate(7);
  transform: scaleY(-1);
}

.button {
    display: inline;
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    background-color: #008CBA;
}

.mine:active {
  background-color: #015470;
}

.buy {
  background-color: #4CAF50;
}

.buy:active {
  background-color: #357738;
}

.sell {
  background-color: #f44336;
}

.sell:active {
  background-color: #7f221c;
}

#coins, #miners {
  font-size: 40px;
  color: #6da9fb;
}

#milestones {
  border: 3px solid gray;
}

span {
  margin-left: 10px;
}

#cash, #value {
  font-size: 30pt;
  color: green;
}

#value {
  color: blue;
}

section {
  border: 2px solid black;
}
