-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBaseStyle.css
More file actions
101 lines (92 loc) · 1.75 KB
/
BaseStyle.css
File metadata and controls
101 lines (92 loc) · 1.75 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
/* CSS reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Fixed width container class that will "auto-center" itself */
.container {
/* width: 1200px; */
margin: 0 auto;
}
/* search bar */
.search{
border-color: rgb(123, 238, 194);
background-color: white;
color: rgb(123, 238, 194);
padding-left: 45px;
padding-right: 45px;
border-radius: 30px;
}
/* Round Button + */
.plus{
border-radius: 50%;
font-size: 30px;
background-color: rgb(123, 238, 194);
border-left: 0px;
border-right: 0px;
border-top: 0px;
border-bottom: 0px;
height: 35px;
width: 35px;
}
/* box shadow */
.create{
background-color: rgb(122, 162, 214);
border: 1px solid black;
height: 25px;
width: 200px;
box-shadow: 5px 5px;
}
/* cols */
.row {
display: flex;
}
.col {
flex: 1;
padding: 20px;
margin: 10px;
background-color: lightcyan;
}
.col-2{
flex:2;
padding:20px;
margin: 10px;
background-color: lightcyan;
}
.col-3{
flex:3;
padding:20px;
margin: 10px;
background-color: lightcyan;
}
/* Coloums */
.nav{
background-color: rgb(53, 53, 61);
display: flex;
flex-direction: row;
padding: 5px;
justify-content: space-between;
align-items: center;
}
.nav-title{
color: white;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.nav-links{
color: rgb(53, 53, 61);
display: flex;
align-items: flex-end;
margin: 10px;
}
.active{
color: whitesmoke;
margin: 10px;
}
.btn{
background-color: rgb(110, 173, 195);
color: white;
margin-left: 10px;
box-shadow: 10px black;
}
/* nav */