-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (110 loc) · 2.36 KB
/
Copy pathstyle.css
File metadata and controls
123 lines (110 loc) · 2.36 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
body{
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#top{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 50vh;
background-color: aliceblue;
}
#top #buttons{
display: flex;
justify-content: space-between;
width: 20%;
}
#top #buttons button{
padding: 12px;
cursor: pointer;
background-color: tomato;
border:2px solid rgba(180, 126, 116, 0.8);
border-radius: 4px;
}
#top #buttons #reset{
background-color: whitesmoke;
}
#top #buttons #reset:hover{
color: rgb(150, 16, 16);
}
#top #buttons button:hover{
background-color: blueviolet;
color: white;
}
#top #buttons button:active{
background-color:tomato;
color: white;
}
#currentPlayShow{
color: blueviolet;
font-weight: bold;
}
#userClickPlay:hover{
background-color: rgb(106, 36, 25);
border:2px solid rgba(176, 162, 160, 0.8);
color: whitesmoke;
}
#userClickPlay:active{
background-color: cadetblue;
border:2px solid rgba(176, 162, 160, 0.8);
}
#bottom{
height: 50vh;
display: grid;
grid-template-columns: 1fr 1fr;
}
#bottom #left, #right{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#left{
background-color: beige;
}
#left button{
background-color: cadetblue;
padding: 15px;
border:2px solid rgba(176, 162, 160, 0.8);
border-radius:4px;
cursor: pointer;
}
#left h3{
color: brown;
}
#right{
background-color: blanchedalmond;
}
#right button{
background-color: rgb(156, 111, 104);
padding: 15px;
border:2px solid rgba(176, 162, 160, 0.8);
border-radius:4px;
cursor: pointer;
color: whitesmoke;
}
#choices{
display: flex;
justify-content: space-between;
font-weight: bold;
}
#choices #userValue, #computerValue{
color: blueviolet;
}
#final_win{
color: rgb(187, 4, 74);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#final_win #reset_game{
padding: 12px;
cursor: pointer;
background-color: rgb(252, 248, 248);
border:2px solid rgba(180, 126, 116, 0.8);
border-radius: 4px;
font-weight: bold;
}