forked from CodeWithBishal/first-contributions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
48 lines (41 loc) · 795 Bytes
/
styles.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
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 0;
}
header {
background-color: #4caf50;
color: white;
padding: 1rem;
text-align: center;
font-size: 1.5rem;
}
.container {
max-width: 900px;
margin: 2rem auto;
padding: 1rem;
}
.brand-block {
background: white;
border: 1px solid #ddd;
border-radius: 5px;
margin-bottom: 1.5rem;
padding: 1rem;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.brand-block h2 {
color: #333;
font-size: 1.2rem;
}
.brand-block img {
max-width: 100%;
height: auto;
border-radius: 5px;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
.brand-block p {
color: #555;
line-height: 1.5;
}