-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (86 loc) · 1.62 KB
/
Copy pathstyles.css
File metadata and controls
105 lines (86 loc) · 1.62 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
body, html {
padding: 0;
margin: 0;
font-family: 'Kumbh Sans', sans-serif;
font-size: 1rem;
}
hr {
border: 1px solid hsl(240, 5%, 91%);
}
h3 {
font-weight: 700;
}
.container {
height: 100vh;
background: linear-gradient(hsl(273, 75%, 66%), hsl(240, 73%, 65%));
display: flex;
justify-content: center;
align-items: center;
}
.faq {
min-height: 60%;
width: 60%;
border-radius: 25px;
background: url(./images/bg-pattern-desktop.svg);
background-repeat: no-repeat;
background-color: white;
background-position: left -400px bottom -80px;
display: flex;
align-items: center;
justify-content: space-evenly;
z-index: inherit;
position: relative;
overflow: hidden;
}
.right-content {
padding: 0 10% 0 50px;
display: flex;
flex-direction: column;
width: 35%;
}
.qAnda {
display: inline-block;
height: 400px;
}
.headline {
font-size: 3rem;
margin: 10% 0 20%;
color:hsl(237, 12%, 33%);
}
.questions {
font-size: 1.1rem;
font-weight: 700;
cursor: pointer;
}
.anwers {
color:hsl(238, 29%, 16%)
}
.image1 {
width: 150%;
height: auto;
position: relative;
right: 50%;
}
.image2 {
position: fixed;
left: 14%;
bottom: 40%;
width: 10%;
height: auto;
z-index: 1;
}
/* -------------Animations------------- */
.scrolling-end {
opacity: 0;
}
.scrolling-start {
transition: opacity 0.75s;
will-change: opacity;
}
/* '------------media-queries------------' */
@media screen and (max-width: 2060px) {
.image1 {
width: 130%;
right: 25%;
}
}