-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
74 lines (62 loc) · 1.13 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
*{
box-sizing: border-box;
}
#navbar{
position: fixed;
top: 0;
}
#sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
right: 0;
background-color: #ffffff;
box-shadow: -7px -7px 7px rgb(190, 187, 187);
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
#color{
transition: margin-right 0.5;
display: flex;
flex-direction: column;
flex: 1;
}
.colorSection{
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
flex-direction:row;
}
.box{
width:200px;
line-height:100px;
margin:10px;
border-radius: 10px;
text-align: center;
font-size: 15px;
color: #ffffff;
}
.box:hover{
transform: scale(1.1);
}
.material-icons{
/* opacity: 0.5; */
color: rgba(255, 255, 255, 0.801);
}
.material-icons:hover{
color:#3f51b5;
box-shadow: 0 0 1px #3f51b5;
transition: all 0.5 ease;
}
.item_display{
margin:3px ;
box-shadow: 3px 3px 3px rgb(190, 187, 187);
border: 1px solid #333;
border-radius: 5px;
padding: 10px;
text-align: center;
}