-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
124 lines (114 loc) · 2.19 KB
/
style.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body{
background-color: black;
}
#parent{
display: none;
margin: 0px 50px 50px 50px;
margin-left: 50px;
background-color: brown;
grid-template-columns:150px 150px 150px ;
grid-template-rows: 126px 387fr 100fr ;
grid-template-areas: "asidePong asideScore asideScoreNumber"
"game game game"
"asidePlayerName asideResault asideButton";
}
#asidePong{
margin: 1em 1em 1em 1em;
grid-area: asidePong;
background-color: black;
text-align: center;
}
#asideScore{
margin: 1em 0em 1em 0em;
grid-area: asideScore;
background-color: black;
text-align: center;
}
#asideScoreNumber{
margin: 1em 1em 1em 0em;
grid-area: asideScoreNumber;
background-color: black;
}
#asidePlayerName{
margin: 1em 1em 1em 1em;
text-align: center;
grid-area: asidePlayerName;
background-color: black;
}
#asideResault{
margin: 1em 0em 1em 0em;
text-align: center;
grid-area: asideResault;
background-color: black;
}
#asideButton{
margin: 1em 1em 1em 0em;
grid-area: asideButton;
background-color: black;
}
#divGame{
margin: 0em 1em 0em 1em;
grid-area: game;
background-color:black;
}
#game{
width: 100%;
height: 100%;
}
h2{
color: wheat;
}
#enterInput{
display: flex;
flex-basis: 300px;
/* flex-grow: ; */
margin-left: 30px;
margin-right: 30px;
flex-direction: column;
justify-content: space-around;
height: 500px;
}
#start{
color: black;
align-self: center;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #eee;
border-radius: 20px;
}
form{
color: black;
align-self: center;
}
#labalName{
color: white;
}
#tag{
align-self: center;
}
#rulls{
align-items: center;
color: white;
margin: 0px 30px 0px 30px;
}
#gameOver{
display: none;
}
#startAgain{
background-color: thistle;
color: black;
align-items: center;
margin-bottom: 12px;
margin-top: 12px ;
padding: 10px;
border-radius: 20px;
}
#flexTest{
display: flex;
justify-content: center;
align-items: center;
}
#GridTest{
display: flex;
justify-content: center;
}