Skip to content

Commit 6754c4c

Browse files
authored
Create style.css
1 parent 63ad668 commit 6754c4c

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed

BubbleGame/AnuragC07/style.css

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
*{
2+
margin: 0;
3+
padding: 0;
4+
box-sizing: border-box;
5+
overflow: hidden;
6+
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
7+
}
8+
body {
9+
background:rgb(181, 181, 255);
10+
}
11+
.outer-box {
12+
border: 0px solid red;
13+
border-radius: 12px;
14+
height: 90vh;
15+
width: 80%;
16+
margin: auto;
17+
margin-top: 30px;
18+
}
19+
.panel-top {
20+
display: flex;
21+
flex-direction: row;
22+
padding: 20px 30%;
23+
justify-content: space-around;
24+
border: 0px solid red;
25+
background: rgb(33, 33, 88);
26+
color: white;
27+
}
28+
.score {
29+
display: flex;
30+
flex-direction: row;
31+
gap: 10px;
32+
}
33+
.score h2 {
34+
font-size: 25px;
35+
}
36+
.score p{
37+
font-size: 25px;
38+
border: 2px solid white;
39+
border-radius: 5px;
40+
background: white;
41+
color: rgb(33, 33, 88);
42+
font-weight: 400;
43+
width: 50px;
44+
display: flex;
45+
justify-content: center;
46+
}
47+
.panel-bottom {
48+
background:rgb(255, 255, 255);
49+
height: 90%;
50+
}
51+
52+
53+
.bubble {
54+
display: inline-block;
55+
padding-left: 18px;
56+
padding-top: 10px;
57+
font-size: 25px;
58+
background: rgb(26, 26, 98);
59+
margin: 8px;
60+
color: white;
61+
border-radius: 50%;
62+
height: 50px;
63+
width: 50px;
64+
}
65+
.bubble:hover {
66+
background: rgb(11, 11, 60);
67+
color: rgb(117, 117, 235);
68+
cursor: pointer;
69+
}

0 commit comments

Comments
 (0)