-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
89 lines (76 loc) · 1.26 KB
/
styles.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
body{
background-color: #112D4E;
color: #F9F7F7;
text-align: center;
font-family: 'Press Start 2P', cursive;
}
h1{
text-align: center;
font-family: 'Press Start 2P', cursive;
}
img{
height: 10rem;
}
button{
background-color: #ffea00;
width: 8.5rem;
text-align: center;
}
.comp-choice{
position: absolute;
top:500px;
left: 45.5%;
}
.comp-heading{
position:relative;
top:50px;
visibility: hidden;
}
.disabled{
opacity: 0.6;
cursor: not-allowed;
}
.hover-effect:hover{
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.shadow-effect{
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
.footer{
position: absolute;
bottom:1px;
font-family: 'Press Start 2P', cursive;
font-size: 0.69rem;
}
#main-title{
padding:2rem;
}
#user-choice{
text-align: center;
}
#rock{
position: relative;
right: 30px;
top: 30px;
}
#scissors{
position: relative;
left: 30px;
top: 30px;
}
#paper{
position: relative;
top: 30px;
}
#comp{
visibility: hidden;
}
#computer-choice-rock{
visibility: hidden;
}
#computer-choice-paper{
visibility: hidden;
}
#computer-choice-scissors{
visibility: hidden;
}