-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
38 lines (33 loc) · 908 Bytes
/
index.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
:root {
box-sizing: border-box;
--White: hsl(0, 0%, 100%);
--Light-pink: hsl(275, 100%, 97%);
--Grayish-purple: hsl(292, 16%, 49%);
--Dark-purple: hsl(292, 42%, 14%);
}
body {
margin: 0px;
background-color: var(--Light-pink);
}
#top-background {
position: absolute;
width: 100%;
height: 30%;
background-image: url('./assets/images/background-pattern-mobile.svg');
background-repeat: no-repeat;
background-clip: border-box;
background-position: 0 -60px;
background-size: cover;
}
@media screen and (min-width: 900px) {
#top-background {
position: absolute;
width: 100%;
height: 35%;
background-image: url('./assets/images/background-pattern-desktop.svg');
background-repeat: no-repeat;
background-clip: border-box;
background-position: 0 -30px;
background-size: cover;
}
}