-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
114 lines (99 loc) · 1.84 KB
/
index.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
body{
font-weight: 200;
font-family: Arial, Helvetica, sans-serif;
color:#3E4377;
margin:0;
}
header{
display:grid;
grid-template-columns:1fr 1fr;
grid-gap:5px;
height:100px;
background-color: silver;
text-align: center;
padding:10px;
width:100%;
}
.active{
background-color: #0FC9E7;
}
.player:hover{
background-color: #0FC9E7;
}
.container{
margin:auto auto;
margin-top:50px;
display:grid;
width:315px;
height:315px;
grid-template-columns:1fr 1fr 1fr;
grid-template-rows:1fr 1fr 1fr;
grid-gap:5px;
background-color:silver;
padding:10px;
}
.item{
width:100px;
height:100px;
background-color: white;
text-align: center;
}
.item:hover{
background-color: lightgrey;
}
.item .material-icons{
margin-top:22px;
margin-bottom:22px;
font-size:55px;
text-align: center;
font-weight: 150;
color:#0D95DC;
}
.judge-card{
position: absolute;
top:50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: rgba(190, 230, 233, 0.86);
width:400px;
height:400px;
border-radius: 10px;
align-items:center;
text-align: center;
}
.judge-card h1{
font-size:60px;
font-weight:100;
margin-top:160px;
}
#judgement{
visibility: hidden;
}
.newGame{
background-color: #CE4553;
padding:5px;
position: relative;
width:30px;
height: 30px;
float: right;
top:10px;
right:10px;
border-radius:3px;
border:solid 1px silver;
text-align: center;
}
.newGame:hover{
background-color: #EB3E06;
}
/* @keyframes rotate-text{
from {color: #00FFB8;}
to {color: #4C00FF;}
}
.j-text-active{
animation-name:rotate-text;
animation-duration:5s;
} */
/* .player2-active{
transition-duration: 6s ;
transform: rotateY(360deg);
} */