-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
126 lines (121 loc) · 2.49 KB
/
styles.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
114
115
116
117
118
119
120
121
122
123
124
125
126
*{
padding: 0px;
margin: 0px;
box-sizing: border-box;
}
html, body {
display: flex;
width: 100%;
height: 100%;
}
#all{
display: block;
width: 100%;
height: 100%;
/* background-color: rgb(0, 94, 172); */
}
#header{
display: flex;
width: 100%;
height:10% ;
/* margin: 10px; */
overflow: hidden;
align-items: center;
justify-content: center;
background-color:#fff;
border-style: solid;
border-width: 0px 0px 7px 0px;
}
#bub{
display: flex;
justify-content: center;
align-items: center;
/* padding: 1px 6px 1px 6px;
background-color: white;
border-radius: 10px; */
color:#03354e;
font-family: 'Protest Riot', sans-serif;
font-size: 50px;
}
#bck {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 90%;
background-color: #4e8a00;
}
#panel {
/* display: block; */
overflow: hidden;
width: 90%;
height: 90%;
border-radius: 10px;
background-color: rgb(255, 255, 255);
border-style: solid;
border-radius: 10px;
border-width: 7px 7px 7px 7px;
border-color: black;
}
#ptop {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 10%;
width: 100%;
height: 100px;
border-style: solid;
border-width: 0px 0px 7px 0px;
background-color: #03354e;
}
.elem {
display: flex;
align-items: center;
padding: 10px;
color: #fff;
gap: 20px;
font-size: 30px;
font-family: 'Protest Riot', sans-serif;
}
.box {
padding: 10px 20px;
background-color: white;
border-radius: 10px;
color: black;
font-size: 30px;
border-style: solid;
border-width :5px 5px 5px 5px;
}
h2 {
align-items:center ;
}
#pbtm {
display: flex;
gap: 10px;
flex-wrap: wrap;
width: 100%;
height: calc(100% - 100px);
padding: 20px;
background-color: #e3a405;
border: 10px;
border-color: black;
}
.bubble {
display: flex;
width: 60px;
height: 60px;
border-radius: 50%;
background-color: #03354e;
color:antiquewhite;
justify-content: center;
align-items: center;
font-size: 30px;
font-weight: 200;
font-family: 'Protest Riot', sans-serif;
border-style: solid;
border-color: black;
}
.bubble:hover {
cursor: pointer;
background-color: rgb(14, 33, 14);
}