-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathdensity.css
101 lines (90 loc) · 1.83 KB
/
density.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
/*
***
* COSTUME STYLESHEET
***
* Please use the bootstrap color pallet and available css variables
* for a more consistent design
*/
/*
*----------------------------------------------------------------
* SITE HEADER
*----------------------------------------------------------------
*/
.site-header {
background-color: rgba(0, 0, 0, 0.85);
-webkit-backdrop-filter: saturate(180%) blur(20px);
backdrop-filter: saturate(180%) blur(20px);
}
/*
*----------------------------------------------------------------
* HERO SECTION
*----------------------------------------------------------------
*/
.hero-section {
background-color: var(--indigo);
}
.hero-section__graphic {
/* to be added */
}
.hero-section__graphic,
.hero-section__graphic:before,
.hero-section__graphic:after {
background-color: rgba(255, 255, 255, 0.1);
width: 300px;
height: 300px;
border-radius: 40% 30% 30% 40% / 60% 40% 60% 40%;
}
.hero-section__graphic:before,
.hero-section__graphic:after {
content: "";
display: inline-block;
position: absolute;
left: 0;
top: 0;
animation: float 10s infinite linear;
}
.hero-section__graphic:after {
animation-direction: reverse;
animation-delay: 500ms;
}
.hero-section__icon {
fill: var(--light);
width: 100%;
height: auto;
}
@keyframes float {
0% {
transform: translate(0%, 0%) rotate(0);
}
33% {
transform: translate(2%, 2%) rotate(120deg);
}
66% {
transform: translate(2%, -2%) rotate(240deg);
}
to {
transform: translate(0%, 0%) rotate(360deg);
}
}
footer .row a {
text-decoration: none;
}
.form-control{
background-color: #eaeaf2;
color: #000;
border: 1px solid #3013bc;
}
form{
margin-top: -30px;
}/*
#formula{
text-align: center;
background-color: #000;
color: #fff;
border-radius: 5px;
margin: 20px;
padding: 20px;
}*/
.card{
text-align: center;
}