-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
43 lines (37 loc) · 846 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Cantarell:wght@700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
height: 100%;
}
body {
width: 100%;
background: -webkit-linear-gradient(to right, #2980b9, #6dd5fa);
background: linear-gradient(to right, #2980b9, #6dd5fa);
font-family: 'Cantarell', sans-serif;
}
.main {
background: white;
background: linear-gradient( to right top, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.5));
-moz-backdrop-filter: blur(1rem);
-webkit-backdrop-filter: blur(1rem);
backdrop-filter: blur(1rem);
}
.degree-section {
cursor: pointer;
margin-right: 30rem;
}
.tree {
width: 50rem;
}
@media (max-width: 768px) {
.degree-section {
margin-right: 0;
}
.tree {
width: 30rem;
}
}