-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (113 loc) · 1.83 KB
/
Copy pathstyle.css
File metadata and controls
118 lines (113 loc) · 1.83 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
*{
margin:0;
padding:0;
box-sizing: border-box;
}
h1{
height:60px;
width:100%;
background-color:#1a8b9d;
color:beige;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
}
/*choices*/
.choices{
height:200px;
/* width:70%; */
/* position:absolute;
left:190px; */
display:flex;
justify-content:center;
align-items:center;
gap:3.5rem;
/* margin-left:15rem; */
}
.choice{
height:148px;
width:148px;
border-radius:50%;
background-size:cover;
}
.choice:active{
border:2px solid #b2d430;
}
.choice:hover{
opacity: 0.5;
cursor: pointer;
}
#rock{
background-image: url(rock.jpg);
}
#paper{
background-image: url(paper.jpg);
}
#sissors{
background-image: url(sissors.jpg);
}
/*score-board*/
.scoreBoard{
display:flex;
justify-content:space-evenly;
width:350px;
position:absolute;
top:45%;;
left:36.5%;
gap:3rem;
}
.score{
display:flex;
flex-direction: column;
align-items:center ;
}
.score p{
font-size:2rem;
}
#compScore{
font-size:4rem;
}
#userScore{
font-size:4rem;
}
/*Message container*/
.msgContainer{
width:100%;
height:70px;
display:flex;
justify-content: center;
align-items: center;
position:absolute;
bottom:21%;
}
.msgContainer p{
background-color:#6934cb;
height:60px;
display:inline;
padding-top:15px;
width:fit-content;
width:35%;
border-radius:20px;
text-align: center;
font-size:20px;
}
/*button prop*/
#mode{
height:20px;
width:100px;
position:fixed;
right:20px;
bottom:20px;
border:2px solid #ff0000;
text-align:center;
font-weight: 600;
}
.light{
background-color:rgb(255,255,255);
color:black;
}
.dark{
background-color:rgb(0,0,0);
color:white;
}