-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
53 lines (46 loc) · 1.17 KB
/
main.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
body {
text-align: center;
font-family: Museo Slab, Helvetica, sans-serif;
font-size: 36px;
user-select: red;
}
::selection {
background: #000000;
color: white;
}
html, body {
height: 100%;
margin: 0px;
}
.allArticles {
width: 100%;
height: 100%;
border-spacing: 0px;
}
.article {
width: 33.33%;
height: 33.33%;
border: 1px solid black;
}
.one { color: #c92828; }
.two { color: #81c928; }
.three { color: #28c9b1; }
.four { color: #58c928; }
.five { color: #3628c9; }
.six { color: #c9b928; }
.seven { color: #c97628; }
.eight { color: #c9289b; }
.nine { color: #6028c9; }
.disabled {
color: gray;
}
@font-face {
font-family: 'Museo Slab';
src: url('assets/fonts/Museo_Slab_500-webfont.eot');
src: url('assets/fonts/Museo_Slab_500-webfont.eot?#iefix') format('embedded-opentype'),
url('assets/fonts/Museo_Slab_500-webfont.woff') format('woff'),
url('assets/fonts/Museo_Slab_500-webfont.ttf') format('truetype'),
url('assets/fonts/Museo_Slab_500-webfont.svg#MuseoSlab500Regular') format('svg');
font-weight: normal;
font-style: normal;
}