-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
87 lines (69 loc) · 890 Bytes
/
styles.css
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
h1 {
font-family: Arial, Helvetica, sans-serif;
margin: 20;
}
p {
font-family: Arial, Helvetica, sans-serif;
}
.cheese,
.empty,
.gray,
.white,
.red,
.orange,
.yellow,
.yellowGreen,
.lightGreen,
.cyan,
.lightBlue,
.blue,
.purple,
.magenta,
.darkGray {
font-family: 'Courier New', Courier, monospace;
text-align: center;
min-width: 3em;
min-height: 3em;
}
.cheese {
background: lightgoldenrodyellow;
}
.empty {
background: lightgray;
}
.red {
background: red;
}
.orange {
background: orange;
}
.yellow {
background: yellow;
}
.yellowGreen {
background: yellowgreen;
}
.lightGreen {
background: lightgreen;
}
.cyan {
background: cyan;
}
.lightBlue {
background: lightblue;
}
.blue {
background: blue;
}
.purple {
background: purple;
}
.magenta{
background: magenta;
}
.darkGray{
background: darkgray;
}
.white {
background: white;
}