-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (41 loc) · 696 Bytes
/
Copy pathstyle.css
File metadata and controls
43 lines (41 loc) · 696 Bytes
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
h1 ,h2 {
text-align: center;
color: #333;
margin: 10px 0;
}
.pink-div {
background-color: pink;
color: green;
border: 2px dashed red;
padding: 10px;
margin: 10px auto;
max-width: 600px;
text-align: center;
height: 50px;
overflow: hidden;
}
.purple-div {
background-color: purple;
color: white;
border: 2px dashed red;
padding: 10px;
margin: 10px auto;
max-width: 600px;
text-align: center;
height: 50px;
overflow: hidden;
}
.custom-img {
display: block;
margin: 10px auto;
max-width: 90%;
height: auto;
max-width: 200px;
object-fit: cover;
}