-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSS.css
98 lines (89 loc) · 1.67 KB
/
CSS.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: monospace;
}
html,body{
width: 100%;
height: 100%;
}
#main{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
background-color: rgb(251, 227, 204);
}
#inner{
overflow: hidden;
border-radius: 7px;
width: 80%;
height: 80%;
background-color: rgb(255, 255, 255);
}
#bar{
display: flex;
justify-content: space-between;
align-items: center;
padding: 0px 35%;
color: rgb(99, 48, 0);
width: 100%;
height: 100px;
background-color: rgb(202, 130, 62);
}
.box{
color: #623100;
font-weight: 700;
font-size: 120%;
padding: 10px 15px;
background-color: rgb(255, 255, 255);
border-radius: 5px;
}
.gam{
display: flex;
align-items: center;
gap:30%
}
#binner{
display: flex;
flex-wrap: wrap;
gap: 10px;
width: 100%;
height: calc(100% - 100px);
padding: 20px;
}
.bubble{
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
width:60px;
height:60px;
background-color:rgb(202, 130, 62);
border-radius: 50%;
color: #ffff;
}
.bubble:hover{
cursor: pointer;
background-color: rgb(162, 100, 43) ;
}
footer {
background-color: #000;
font-family: 'Bricolage Grotesque', sans-serif;
font-weight: bold;
color: #fff;
text-align: center;
padding: 10px 0;
font-size: 20px;
position: fixed;
top: 96%;
transition-duration: 0.89s;
bottom: 0;
width: 100%;
}
footer:hover{
background-color: rgb(31, 30, 30);
transform: scaleX(1.05);
}