-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
57 lines (48 loc) · 1.03 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
*{
cursor: url(http://www.rw-designer.com/cursor-extern.php?id=112076), auto !important;
}
body{
background-color:bisque;
}
#container{
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
#instr2{
margin-top: 0px;
}
#result{
height: 70px;
width: 250px;
background-color: coral;
padding: 30px;
border: 2px black solid;
white-space: pre;
text-align: center;
margin: 40px 0 20px 0;
font-family: monospace;
font-size: large;
}
.select{
margin: 6px;
padding: 7px;
background-color: antiquewhite;
transition: all 0.3s;
font-family: monospace;
font-size: large;
}
.select:focus{
border: 2.5px red solid;
background-color: coral;
}
#rock{
cursor: url(https://cur.cursors-4u.net/people/peo-3/peo202.cur), auto !important;
}
#paper{
cursor: url(http://www.rw-designer.com/cursor-extern.php?id=93812), auto !important;
}
#scissors{
cursor: url(http://www.rw-designer.com/cursor-extern.php?id=114969), auto !important;
}