-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (93 loc) · 1.94 KB
/
style.css
File metadata and controls
103 lines (93 loc) · 1.94 KB
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
body{
font-family: 'Montserrat', sans-serif;
background-color: #eee;
}
/* navbar */
.sidebar{
height: 100vh;
background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .9)), url(images/back.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
box-shadow: 5px 7px 25px #999;
}
.bottom-border{
border-bottom: 1px groove #eee;
}
.sidebar-link{
transition: all 4s;
}
.sidebar-link:hover{
background-color: #444;
border-radius: 5px;
}
.current{
background-color: #f44336;
border-radius: 7px;
box-shadow: 2px 5px 10px #111;
transition: all .3s;
}
.current:hover{
background-color: #f66436;
border-radius: 7px;
box-shadow: 2px 5px 20px #111;
transform: translate(-1px);
}
.search-input{
background: transparent;
border: none;
border-radius: 0;
border-bottom: 2px solid #999;
transition: all 4s;
}
.search-input:focus{
background: transparent;
box-shadow: none;
border-bottom: 2px solid #dc3545;
}
.search-button{
border-radius: 50%;
padding: 10px 16px;
}
.search-button:hover{
background-color: #eee;
transform: translate(-1px);
}
.icon-parent{
position: relative;
}
.icon-bullet::after {
content: "";
position: absolute;
top: 7px;
left: 15px;
height: 12px;
width: 12px;
background-color: #f44336;
border-radius: 50%;
}
@media (max-width: 768px){
.sidebar{
position: static;
height: auto;
}
.Top-navbar{
position: static;
}
}
/* end of navbar */
/* cards */
.card-common{
box-shadow: 1px 2px 5px #999;
transition: all .4s;
}
.card-common:hover{
box-shadow: 2px 3px 15px #999;
transform: translateY(-1px);
}
/* end of cards */
/* task list */
.task-border{
border-left: 3px solid #f66436;
}
/* end of task list */