-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (100 loc) · 1.84 KB
/
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
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
*{
margin:0px;
padding: 0px;
background-color: #998877;
}
.heading{
font-size: 15px ;
margin-top: 20px;
margin-left: 460px;
text-decoration:underline;
}
.board{
margin-top:10px;
margin-left: 270px;
height: 500px;
width : 850px;
border: 3.5px solid #000;
border-style:dotted;
border-radius: 25px;
}
.score{
margin: 20px;
height: 50px;
width: 700px;
/* display: flex; */
/* justify-content: space-between; */
font-size: 30px;
}
#computerScore
#playerScore{
display: flexbox;
background-color: aquamarine;
width: auto;
}
.weaponChooseText{
margin: 20px;
display: flex;
justify-content: center;
font-size: 45px;
}
.weaponsChoose{
margin: 20px;
/* background-color: blue; */
height: 200px;
width: 800px;
display: flex;
justify-content: space-between;
}
#rock,
#paper,
#scissor{
margin: 10px;
height: 170px;
width: 200px;
display: flex;
align-items: center;
flex-direction: column;
font-size: larger;
text-shadow: #998877;
}
img{
height: 150px;
width: 150px;
border: 5px solid;
border-radius: 10px;
}
.result{
display: flex;
align-items: center;
flex-direction: row;
}
#resultBox{
height: 30px;
width: 400px;
background-color: aliceblue;
margin: 10px;
padding: 12px;
border: 3px solid;
border-radius: 30px;
font-size: large;
font-weight: bolder;
}
#ComputerWeaponResult{
height: 30px;
width: 400px;
background-color: aliceblue;
margin: 10px;
padding: 12px;
border: 3px solid;
border-radius: 30px;
font-size: large;
font-weight: bolder;
}
.Createdby{
text-align: center;
color: black;
margin-top: 10px;
font-family: 'Courier New', Courier, monospace;
text-decoration: none;
}