forked from EutFurniture/Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
74 lines (64 loc) · 1.17 KB
/
index.css
File metadata and controls
74 lines (64 loc) · 1.17 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
@import url("https://fonts.googleapis.com/css?family=Droid+Serif:400,700,700i|Merriweather:300,400,700,900i|Open+Sans+Condensed:300,300i,700");
/* styling scrollbars */
::-webkit-scrollbar{
width: 5px;
height: 6px;
}
::-webkit-scrollbar-track{
box-shadow: inset 0 0 5px #a5aaad;
border-radius: 10px;
}
::-webkit-scrollbar-thumb{
background:#3ea175 ;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover{
background: #a5aaad;
}
/* general styling */
*{
margin: 0;
padding:0;
}
body{
box-sizing: border-box;
font-family:"Lato",sans-serif ;
}
.text-primary-p{
color: #a5aaad;
font-size: 14px;
font-weight: 700;
}
.font-bold{
font-weight: 700;
}
.text-lightblue{
color: #469cac;
}
.text-red{
color: #cc3d38;
}
.text-yellow{
color: #a98921;
}
.text-green{
color: #3b9668;
}
.container{
display: grid;
height: 100vh;
grid-template-columns: 0.8fr 1fr 1fr 1fr;
grid-template-rows: 0.2fr 3fr;
grid-template-areas:
"sidebar nav nav nav"
"sidebar main main main";
}
@media only screen and (max-width: 978px){
.container{
grid-template-columns: 1fr ;
grid-template-rows: 0.2fr 3fr;
grid-template-areas:
"nav"
"main";
}
}