Skip to content

Commit 48c260f

Browse files
authored
Create partner-style.css
1 parent b0fc0de commit 48c260f

File tree

1 file changed

+200
-0
lines changed

1 file changed

+200
-0
lines changed

content/bn/includes/partner-style.css

Lines changed: 200 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
1+
/* বিভাগসমূহ */
2+
.section {
3+
clear: both;
4+
padding: 0px;
5+
margin-bottom: 2em;
6+
}
7+
8+
.kcsp_section {
9+
clear: both;
10+
padding: 0px;
11+
margin-bottom: 2em;
12+
}
13+
14+
/* কলাম সেটআপ */
15+
.col {
16+
display: block;
17+
float:left;
18+
margin: 1% 0 1% 1.6%;
19+
background-color: #f9f9f9;
20+
}
21+
.col:first-child { margin-left: 0; }
22+
23+
/* গ্রুপিং */
24+
.group:before,
25+
.group:after {
26+
content:"";
27+
display:table;
28+
}
29+
.group:after {
30+
clear:both;
31+
}
32+
.group {
33+
zoom:1; /* আইই 6/7 এর জন্য */
34+
}
35+
36+
/* তিনটি গ্রিড */
37+
.span_3_of_3 {
38+
width: 35%;
39+
background-color: #f9f9f9;
40+
padding: 20px;
41+
}
42+
.span_2_of_3 {
43+
width: 35%;
44+
background-color: #f9f9f9;
45+
padding: 20px;
46+
}
47+
.span_1_of_3 {
48+
width: 35%;
49+
background-color: #f9f9f9;
50+
padding: 20px;
51+
}
52+
53+
.col-container {
54+
display: table; /* কন্টেন্টের উপাদানগুলি একটি টেবিল হিসেবে ব্যবহার করুন */
55+
width: 100%; /* সম্পূর্ণ প্রসারের জন্য পূর্ণ প্রস্থ */
56+
padding-bottom: 30px;
57+
}
58+
59+
.col-nav {
60+
display: table-cell; /* কন্টেনারের উপাদানগুলি টেবিল সেল হিসেবে কাজ করার জন্য */
61+
width: 18%;
62+
background-color: #f9f9f9;
63+
padding: 20px;
64+
border: 5px solid white;
65+
}
66+
67+
/* 480 পিক্সেলের নিচে পূর্ণ প্রস্থে যান */
68+
69+
@media only screen and (max-width: 480px) {
70+
.col { margin: 1% 0 1% 0%;}
71+
.span_3_of_3, .span_2_of_3, .span_1_of_3 { width: 100%; }
72+
}
73+
74+
@media only screen and (max-width: 650px) {
75+
.col-nav {
76+
display: block;
77+
width: 100%;
78+
}
79+
}
80+
81+
.button{
82+
max-width: 100%;
83+
box-sizing: border-box;
84+
margin: 0;
85+
display: inline-block;
86+
border-radius: 6px;
87+
padding: 0 20px;
88+
line-height: 40px;
89+
color: #ffffff;
90+
font-size: 16px;
91+
background-color: #3371e3;
92+
text-decoration: none;
93+
}
94+
95+
h5 {
96+
font-size: 16px;
97+
line-height: 1.5em;
98+
margin-bottom: 2em;
99+
}
100+
101+
#usersGrid a {
102+
display: inline-block;
103+
background-color: #f9f9f9;
104+
}
105+
106+
#ktpContainer, #distContainer, #kcspContainer, #isvContainer, #servContainer {
107+
position: relative;
108+
width: 100%;
109+
display: flex;
110+
justify-content: space-between;
111+
flex-wrap: wrap;
112+
}
113+
114+
#isvContainer {
115+
margin-bottom: 80px;
116+
}
117+
118+
#kcspContainer {
119+
margin-bottom: 80px;
120+
}
121+
122+
#distContainer {
123+
margin-bottom: 80px;
124+
}
125+
126+
#ktpContainer {
127+
margin-bottom: 80px;
128+
}
129+
130+
.partner-box {
131+
position: relative;
132+
width: 47%;
133+
max-width: 48%;
134+
min-width: 48%;
135+
margin-bottom: 20px;
136+
padding: 20px;
137+
flex: 1;
138+
display: flex;
139+
justify-content: left;
140+
align-items: flex-start;
141+
}
142+
143+
.partner-box img {
144+
background-color: #f9f9f9;
145+
}
146+
147+
.partner-box > div {
148+
margin-left: 30px;
149+
}
150+
151+
.partner-box a {
152+
color: #3576E3;
153+
}
154+
155+
@media screen and (max-width: 1024px) {
156+
.partner-box {
157+
flex-direction: column;
158+
justify-content: flex-start;
159+
}
160+
161+
.partner-box > div {
162+
margin: 20px 0 0;
163+
}
164+
}
165+
166+
@media screen and (max-width: 568px) {
167+
#ktpContainer, #distContainter, #kcspContainer, #isvContainer, #servContainer {
168+
justify-content: center;
169+
}
170+
171+
.partner-box {
172+
flex-direction: column;
173+
justify-content: flex-start;
174+
width: 100%;
175+
max-width: 100%;
176+
min-width: 100%;
177+
}
178+
179+
.partner-box > div {
180+
margin: 20px 0 0;
181+
}
182+
}
183+
184+
@media screen and (max-width: 568px) {
185+
#ktpContainer, #distContainer, #kcspContainer, #isvContainer, #servContainer {
186+
justify-content: center;
187+
}
188+
189+
.partner-box {
190+
flex-direction: column;
191+
justify-content: flex-start;
192+
width: 100%;
193+
max-width: 100%;
194+
min-width: 100%;
195+
}
196+
197+
.partner-box > div {
198+
margin: 20px 0 0;
199+
}
200+
}

0 commit comments

Comments
 (0)