-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathport.css
More file actions
104 lines (84 loc) · 1.84 KB
/
Copy pathport.css
File metadata and controls
104 lines (84 loc) · 1.84 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
104
.body {
font-family: 'Montserrat', sans-serif;
background: #eee;
}
.sidebar {
height: 100vh;
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url(/img1.jpeg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.bottom-border{
border-bottom: 1px solid #eee;
}
.sidebar .active{
background-color: #f44336;
border-radius: 7px;
box-shadow: 2px 5px 20px #111;
transition: all .3s ease;
}
.sidebar .active:hover {
background-color: #f66436;
transform: translateY(-2px);
}
.sidebar-link{
transition: all .3s ease;
}
.sidebar-link:hover{
background-color: #444;
border-radius: 7px;
}
.search{
background: transparent;
border: none;
border-radius: 0;
border-bottom: 2px solid #999;
transition: all .4s ease;
}
.search:focus{
background: transparent;
box-shadow: none;
border-bottom: 2px solid #dc3545;
}
.search-btn{
border-radius: 50%;
padding: 10px 16px;
transition: all .4s ease;
}
.search-btn:hover{
background-color: #eee;
transform: translateY(-1px);
}
.icon-notify{
position: relative;
}
.icon-notify-link::after{
content: "";
position: absolute;
top: 7px;
left: 15px;
height: 12px;
width: 12px;
border-radius: 50%;
background-color: #f44336;
}
.card-common{
transition: all .4s ease;
}
.card-common:hover{
box-shadow: 2px 2px 5px #999;
transform: translateY(-10px);
}
.pagination .page-item{
background-color:#007bff;
}
.pagination .active{
background-color:#007bff;
}
.task-border{
border-left:3px solid #f66436 ;
border-right:3px solid #f66436 ;
border-top: 1px solid #444;
border-bottom:1px solid #444 ;
}