-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
120 lines (96 loc) · 1.67 KB
/
style.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
/*
#Config Css
#background-color : {
Gray: #f5f5f5;
}
#border: 1px solid #ececee;
#font: {
font-family: 'Poppins', sans-serif;
font-family: 'Source Sans Pro', sans-serif;
}
*/
*{
background-color: #f5f5f5;
}
section{
margin-left: 250px;
}
/* SIDEBAR */
.left-sidebar{
width: 250px;
height: 100%;
position: fixed;
top: 0px;
left: 0px;
border-right: 1px solid #ececee;
}
.left-sidebar .content-sidebar img{
width: 70px;
}
.left-sidebar .content-sidebar p{
padding-top: 10px;
font-family: 'Poppins', sans-serif;
margin-bottom: 2px;
letter-spacing: 1px;
}
.left-sidebar .logo-sidebar{
margin-top: 40px;
margin-bottom: 40px;
}
.left-sidebar .logo-sidebar h2{
text-align: center;
color: #00BCD4;
letter-spacing: 5px;
}
.left-sidebar nav{
padding-top: 50px;
margin-left: 10px;
text-decoration: none;
}
.left-sidebar nav ul{
list-style-type: none;
}
.left-sidebar nav ul li{
padding: 5px;
}
/* HEADER */
.content-header{
margin-left: 250px;
}
header{
border-bottom: 1px solid #ececee;
padding-top: 40px;
padding-bottom: 10px;
display: inline-block;
}
.header-left{
top: 0px;
left: 0px;
float: left;
}
.search{
border: 0px;
border-bottom: 2px solid #ececee;
}
.header-left input[value="Search"]{
color: #BDBDBD;
}
.header-left input[value="Search"]:focus{
color: black;
}
.header-left button{
border: 0px;
}
.header-right{
top: 0px;
left: 0px;
float: right;
}
.clear-fix{
clear: both;
}
/* MAIN CONTENT */
.content{
padding: 40px;
/* border-bottom: 1px solid black; */
}