-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
65 lines (65 loc) · 1.13 KB
/
Copy pathindex.css
File metadata and controls
65 lines (65 loc) · 1.13 KB
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
/* line 4, index.scss */
body {
font: 100% Helvetica, sans-serif;
color: #333333;
background-color: #dcdcdc;
text-align: center;
vertical-align: middle;
}
/* line 11, index.scss */
body h1 {
color: #333333;
font-size: 10px;
}
/* line 16, index.scss */
body .header {
width: 100%;
height: 20%;
background-color: white;
min-height: 35px;
}
/* line 22, index.scss */
body .header h1 {
font-size: 32px;
}
/* line 27, index.scss */
body .footer {
width: 100%;
height: 10%;
background-color: white;
min-height: 20px;
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
/* line 35, index.scss */
body .footer .footText {
font-size: 20px;
width: 100px;
}
/* line 40, index.scss */
body .footer .footLogo {
width: 20px;
height: 20px;
border: black 1px solid;
}
/* line 47, index.scss */
body .gridSquare {
width: 100px;
height: 100px;
background-color: #eeeeee;
border: black 1px solid;
rIndex: 1;
}
/* line 54, index.scss */
body .gridSquare .gridValue {
width: 60%;
position: relative;
left: 50%;
top: 50%;
background-color: red;
overflow: hidden;
transform: translate(-50%, -50%);
rIndex: 2;
}