-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (99 loc) · 2.07 KB
/
style.css
File metadata and controls
117 lines (99 loc) · 2.07 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
105
106
107
108
109
110
111
112
113
114
115
116
@font-face {
font-family: Parastoo;
src: url('./fonts/Parastoo.eot');
src: url('./fonts/Parastoo.eot?#iefix') format('embedded-opentype'),
url('./fonts/Parastoo.woff') format('woff'),
url('./fonts/Parastoo.ttf') format('truetype');
}
@font-face {
font-family: ParastooBold;
src: url('./fonts/Parastoo-Bold.eot');
src: url('./fonts/Parastoo-Bold.eot?#iefix') format('embedded-opentype'),
url('./fonts/Parastoo-Bold.woff') format('woff'),
url('./fonts/Parastoo-Bold.ttf') format('truetype');
font-weight: bold;
}
* {
margin: 0px;
box-sizing: border-box;
font-family: Parastoo
}
.navbar {
width: 100%;
background-color:#f4f5f7;
padding: 5px;
}
.centerContainer {
display: flex;
justify-content: space-between;
width: 75%;
margin : auto;
}
.navbarRight {
display: flex;
/* background-color: blue; */
}
.navbarLeft {
/* background-color: brown; */
}
.navbarItem {
font-family: Parastoo;
color: #898f99;
}
.navbarRightItem {
margin: 0px 10px 0px 10px;
}
.header {
width: 100%;
background-color:'white';
padding: 5px;
box-shadow: 0px 5px 5px #b0b6c1;
}
#verifyAdButton {
font-family: Parastoo;
font-size: 12px;
color: white;
border : 0;
background-color:#198ad6;
padding: 8px;
border-radius: 25px 25px 25px 25px;
}
.main {
background-color: #f4f5f7;
width: 100%;
padding-top: 20px;
}
.title {
display: flex;
flex-direction: column
}
.searchBar {
margin-top: 50px;
background-color: white;
/* border-radius: 10%; */
padding: 10px;
}
.columnDir {
display: flex;
flex-direction: column
}
#searchInput {
font-family: Parastoo;
width: 80%;
height: 50px;
border-radius: 5px;
border: 1px solid #bbbcbf;
padding: 20px;
}
#searchButton {
font-family: Parastoo;
width: 15%;
height: 50px;
background-color: #eaedf2;
border: 1px solid #bbbcbf;
border-radius: 5px;
}
.shadowBehind {
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
border-radius: 5px;
}