-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
85 lines (68 loc) · 1.37 KB
/
index.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
*{
margin:0;
padding:0;
box-sizing:border-box;
}
.container{
width:1535px;
height:740px;
background-color: rgb(118, 189, 145);
display:flex;
justify-content:center;
align-items: center;
}
.box{
height:600px;
width:1400px;
background-color:rgb(250, 239, 239);
border-radius: 10px;
overflow: hidden;
}
.panel{
width:100%;
height:15%;
background-color:rgb(81, 124, 97);
display:flex;
align-items: center;
gap: 20%;
}
.boards h4{
color:rgb(230, 230, 230);
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#boards-1{
padding-left:300px;
}
.board-inside{
background-color: aliceblue;
padding:5px 14px;
border-radius: 3px;
font-weight: 600;
font-size:17px;
color:rgb(63, 108, 63);
}
.panel-bottom{
/* height:calc(100%-15%); */
background-color: rgb(255, 255, 255);
width:100%;
height:85%;
display:flex;
flex-wrap: wrap;
}
.bubbles{
display:flex;
align-items: center;
margin: 10px;
height:40px;
width:40px;
border-radius:50%;
background-color:rgb(87, 157, 113);
}
.bubbles:hover{
background-color:rgb(16, 86, 42);
}
.bubbles span{
color:white;
padding-left:17px;
font-weight:500;
}