-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.css
93 lines (85 loc) · 1.59 KB
/
project.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
87
88
89
90
91
92
93
/*Create Grid !*/
.container{
display: grid;
grid-template-areas:
"header header header"
"section nav article"
"aside instrument color"
". footer .";
grid-template-columns: 1fr 1fr 1fr;
border: 1px solid black;
}
header{
grid-area: header;
text-align: center;
}
section{
grid-area: section;
/*border: 1px solid black;*/
border-top: 1px solid black;
border-right: 1px solid black;
border-bottom: 1px solid black;
text-align: center;
padding-bottom: 10px;
}
nav{
grid-area: nav;
border-top: 1px solid black;
/*border : 1px solid black;*/
text-align: center;
}
article{
grid-area: article;
/*border: 1px solid black;*/
border-top: 1px solid black;
border-left: 1px solid black;
text-align: center;
}
aside{
grid-area: aside;
text-align: right;
padding-right: 20px;
padding-top: 20px;
}
#instrument{
grid-area: instrument;
border: 1px solid black;
text-align: center;
}
#color{
grid-area: color;
/*border: 1px solid black;*/
border-bottom: 1px solid black;
border-top: 1px solid black;
text-align: center;
}
footer{
grid-area: footer;
text-align: center;
}
/*sets background color*/
.bgCol1{
background: red ;
}
.bgCol2{
background: blue;
}
.bgCol3{
background: yellow;
}
.winning{
text-align: center;
color: white;
}
/*player 1 score display*/
.display{
text-align: center;
font-size:800%;
}
/*player2 score display*/
.display2{
text-align: center;
font-size: 800%;
}
.p1Btn{
}