-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (56 loc) · 990 Bytes
/
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
.grid {
display:flex;
flex-wrap: wrap;
height: 458px; /*images plus padding*/
width: 616px; /*images plus padding*/
margin: auto;
}
.image {
display: block;
max-height: 150px;
max-width: 150px;
cursor: pointer;
padding: 2px;
}
.image:active {
transition: all 0.1s ease;
transform: rotateY(180deg);
}
body {
background-image: url("images/background.png");
background-repeat: no-repeat;
background-size: 100%;
text-align: center;
font-size: large;
}
#newGame {
background-color:white;
border-radius: 5px;
padding: 10px 20px;
font-size: large;
margin: 10px;
cursor: pointer;
box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,#D6D6E7 0 -3px 0 inset;
}
#message {
color: white;
font-weight: normal;
}
footer {
background-color: hsla(0, 0%, 100%, 0);
width: 250px;
color: blue;
float: right;
}
#icon {
visibility: hidden;
}
h3{
margin: 10px;
}
p {
margin: 5px;
}
button {
margin: 5px;
}