aboutsummaryrefslogtreecommitdiff
path: root/public/stylesheets/hello.css
blob: edcbc92cc7818b4445d221973bc85b38775bde00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100vw;
  height: 100vh;
  color: gray;
}

.ideas {
  font-size: 0.8em;
}

a {
  color: #3f51b5;
}