-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (71 loc) · 1.34 KB
/
style.css
File metadata and controls
78 lines (71 loc) · 1.34 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
72
73
74
75
76
77
78
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.story-container {
width: 100%;
background: transparent;
}
header {
position: relative;
z-index: 1;
}
.heading-secondary {
margin: auto;
display: flex;
justify-content: space-around;
align-items: center;
}
.heading-text {
color: rgba(229, 9, 20, 1);
font-size: 2.5rem;
}
.button-secondary{
appearance: none;
text-decoration: none;
align-items: center;
display: inline-flex;
justify-content: center;
line-height: 1;
user-select: none;
border: 0;
border-radius: 0.25rem;
cursor: pointer;
/* transition-duration: 250ms;
transition-property: background-color,border-color;
transition-timing-function: cubic-bezier(0.9, 0, 0.51, 1);
font-size: 0.875rem; */
font-weight: 500;
min-height: 2rem;
padding: 0.25rem 1rem;
background: rgb(229,9,20);
color: rgb(255,255,255);
}
.heading-img{
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.imgs{
position: relative;
overflow: hidden;
height: 100%;
width: 100%;
}
.heading-img img{
height: 100%;
width: 100%;
object-fit: cover;
border: 0;
}
.background-img{
background: rgb(0 0 0 / 40%);
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}