about summary refs log tree commit diff stats
path: root/app/assets/stylesheets/pokeviewer/pokemon.css.scss
blob: 1f4c068d0d1a7a4cd29e332de9b5feef480611f9 (plain) (blame)
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
/*
  Place all the styles related to the matching controller here.
  They will automatically be included in application.css.
*/

.pokemon {
  font-family: 'Power Green';
  display: flex;
  margin: 1em;

  .male {
    color: blue;
  }

  .female {
    color: red;
  }
  
  .pokemon-name {
    font-weight: bold;
  }

  .pokemon-ivs {
    margin: 0 1em;
    
    th {
      text-align: center;
      padding-right: .5em;
    }
    
    td {
      text-align: right;
    }
  }
}