-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (86 loc) · 1.78 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
/* style.css */
.banner {
/* margin-top: 60px; /* adjust the margin to your liking
margin: 0 auto; */
display: flex;
justify-content: center;
align-items: center;
background-color: #f4f4f4; /* Optional: background color for better visibility */
}
.banner img {
width: 100%;
height: 450px; /* adjust the height to your liking */
filter: blur(1px) brightness(0.6);
}
.container {
background-color: #f2f2f2;
padding: 20px;
height: 300px;
margin: 10px 0;
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
table{
font-size: 10px;
padding: 50px;
margin: 0 auto;
height: 210px;
}
th,td{
border: 1px solid black;
text-align: center;
}
/* style.css */
.card {
margin: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.card-img-top {
width: 100%;
height:100%; /* adjust the height to your liking */
object-fit: cover;
}
.card-body {
padding: 20px;
text-align: center;
}
.blur-image {
filter: blur(1px) brightness(0.8);
}
.card-component{
margin: 5px;
}
#container-fluid{
background-color:grey;
padding: 30px;
}
#market-research {
margin: 20px;
padding: 20px;
background-color: #f0f0f0;
border: 1px solid #ccc;
}
.research-boxes {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.research-box {
margin-bottom: 20px;
padding: 10px;
border: 1px solid #ccc;
flex: 1; /* Ensure boxes take up equal space */
}
.research-box h3 {
margin: 0;
font-weight: bold;
}
.research-box ul {
margin: 0;
padding: 0;
}
.research-box ul li {
list-style: none;
margin-bottom: 5px;
}