-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (98 loc) · 2.11 KB
/
style.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
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
106
107
108
109
110
111
112
113
114
@font-face {
font-family: Manrope;
src: url("https://pavela.net/fonts/manrope/Manrope-Medium.woff2");
}
@font-face {
font-family: Manrope;
src: url("https://pavela.net/fonts/manrope/Manrope-Bold.woff2");
font-weight: bold;
}
body, html {
/* use #3f494f for pavela website */
background-color: #3f494f;
height: 100%;
margin: 0 !important;
padding: 0 !important;
overflow-x: hidden;
}
.bg-image {
/* The image used */
/* Use background-image: url("icons/image.png"); for when you want a banner image */
/* background-image: url("icons/banner.png"); */
/* Add the blur effect */
/* filter: blur(4px);
-webkit-filter: blur(4px); */
/* Full height */
height: 80%;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.main {
font-family: Manrope; Roboto; Arial;
text-align: center;
color: white;
}
.button {
border-radius: 8px;
padding: 32px 64px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 24px;
font-family: Manrope; Roboto; Arial;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
background-color: #0082ac;
color: white;
border: 2px solid #0082ac;
}
.button:hover {
transform: scale(1.03);
background-color: #008CBA;
border-color: #008CBA;
color: white;
}
.footer {
font-family: Manrope; Roboto; Arial;
font-size: 20px;
padding: 20px;
text-align: center;
background-color: #008CBA;
color: white;
}
/* :lang(en) {
display: none;
} */
.alert {
font-family: Manrope; Roboto; Arial;
top: 0;
position: sticky;
padding: 20px;
background-color: #039BE5;
color: white;
}
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
.solid_colour_title_red {
padding: 50px;
/* height: 20%; */
background-color: #F4511E;
color: white;
font-family: Manrope; Roboto; Arial;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}