aboutsummaryrefslogtreecommitdiffstats
path: root/playgrounds/transforms/style.css
blob: f327905cee7daeb21e3ea479c4f9c0cd7fdc6c57 (plain)
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
67
68
69
70
* {
  box-sizing: border-box;
}

html {
  background-color : #fefefe;
}

body {
  margin: 0;
  width: 100vw;
  height: 99vh;
  grid-gap: 30px;
  display: inline-grid;
  align-items: center;
  grid-template-columns: 10vw 40vw auto 10vw;
  grid-template-rows: 0 10vw auto 0;
}

h1 {
  text-align: right;
  border-right: solid 3px #f06;
  padding-right: 12px;
  color: #f06;
  font-size: 52px;
  font-family: Helvetica;
  grid-row: 2;
  grid-column: 2;
  line-height: 1.8em;
}

p {
  padding-right: 50px;
  color: #444;
  font-size: 18px;
  font-family: Helvetica;
  grid-row: 2;
  grid-column: 3;
}

svg {
  height: 100%;
  width: 100%;
  grid-row: 3;
  grid-column: 2/4;
  background-color: #f5f6f7;
  border-radius: 20px;
  border: #f065 1px solid;
}

.pink {
  fill: #FF0066;
}

.green {
  fill: #00ff99;
}

.dark-pink {
  fill: #660029;
}

.light-pink {
  fill: #FF99C2;
}

.off-white {
   fill: #FFCCE0;
}