-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemory.css
More file actions
42 lines (42 loc) · 739 Bytes
/
memory.css
File metadata and controls
42 lines (42 loc) · 739 Bytes
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
body {
background-color:#99f9ff;
font-size:30px;
font-family: Sans-Serif;
text-align:center;
}
.card {
width: 75px;
height: 75px;
border: 2px solid #8AD007;
margin: 10px;
display: inline-block;
opacity: 1;
}
.matched {
width: 75px;
height: 75px;
border: 2px solid #8AD007;
margin: 10px;
display: inline-block;
opacity: 0;
transition: opacity 3s;
}
.play{
background:#c0fff0;
border:#999 1px solid;
width:500px;
height:500px;
padding-top:50px;
display: inline-block;
opacity: 1;
}
.win {
background:#c0fff0;
border:#999 1px solid;
width:500px;
height:500px;
padding-top:50px;
display: inline-block;
opacity: 0;
transition: opacity 3s;
}