-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
51 lines (44 loc) · 945 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
body {
text-align: center;
font-family: sans-serif;
background-color: pink;
}
h1 {
color: teal;
}
.box-janken-computer {
}
.box-janken-player {
margin: 2rem;
}
.box-janken-winner > img {
text-align: center;
display: block;
width: 550px;
height: 420px;
margin-left: auto;
margin-right: auto;
}
.button-rock, .button-paper, .button-scissors {
border: 4px solid #22b6a2;
border-top: none;
border-bottom: 8px solid #22b6a2;
border-radius: 6px;
background: #27d3bc;
color: #fff;
font-weight: 700;
display: inline;
margin: 2rem;
padding: 1rem;
}
.button-rock:hover,
.button-paper:hover,
.button-scissors:hover,
.button-rock:active,
.button-paper:active,
.button-scissors:active {
background: #5de1cf;
border-bottom: 2px solid #22b6a2;
transform: translateY(6px);
transition: all ease-in 0.2s;
}