-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevSalary.css
More file actions
62 lines (50 loc) · 1.17 KB
/
devSalary.css
File metadata and controls
62 lines (50 loc) · 1.17 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
@import url("https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");
.bg-dev-salary-python {
position: relative;
}
.super-salary{
font-family: 'Space Mono';
}
.bg-dev-salary-python::before {
content: '';
background-image: url('/sales-page-python-img/background.png');
position: absolute;
inset: 0;
opacity: 0.2;
}
@media (min-width:768px){
.bg-dev-salary-python-tablet {
position: relative;
}
.bg-dev-salary-python-tablet::before{
content: '';
position: absolute;
background-image: url('/sales-page-python-img/background.png');
inset: 0;
opacity: 0.2;
}
.bg-dev-salary-python::before {
display: none;
}
}
/* FONTS */
.space-mono-regular {
font-family: "Space Mono", monospace;
font-weight: 400;
font-style: normal;
}
.space-mono-bold {
font-family: "Space Mono", monospace;
font-weight: 700;
font-style: normal;
}
.space-mono-regular-italic {
font-family: "Space Mono", monospace;
font-weight: 400;
font-style: italic;
}
.space-mono-bold-italic {
font-family: "Space Mono", monospace;
font-weight: 700;
font-style: italic;
}