forked from Technigo/project-buzzfeed
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
71 lines (61 loc) · 1.01 KB
/
styles.css
File metadata and controls
71 lines (61 loc) · 1.01 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
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
color: #333;
margin: 24px;
}
h1 {
font-size: 42px;
color: #36502c;
}
h2 {
font-size: 36px;
color: #36502c;
}
p {
width: 50%;
}
img {
width: 600px;
border-radius: 8px;
}
/* Styling for the button */
button {
width: 300px;
padding: 16px;
font-weight: 800;
text-transform: uppercase;
color: #36502c;
border-width: 3px;
border-color: #36502c;
border-radius: 50px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Container for the header (image + text) */
.header {
margin-bottom: 20px;
}
/*Styling for the image inside the header*/
.headerImage {
/*width: 100%;
height: 500px;*/
/*background-image: ;*/
width: 100%;
height: 300px;
object-fit: cover;
border-radius: 0px;
/* Beskär och fyller ut behållaren */
}
/* Styling for the content layout */
.box {
padding-top: 32px;
padding-bottom: 32px;
display: flex;
align-items: center;
}
.box p {
width: 600px;
}
.box img {
padding-right: 32px;
}