forked from dillonkearns/elm-pages-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
49 lines (43 loc) · 804 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
44
45
46
47
48
49
@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");
.avatar img {
border-radius: 50%;
}
.article {
position: relative;
background: linear-gradient(
90deg,
rgba(255, 230, 250, 0.4) 0%,
rgba(191, 217, 254, 0.4) 100%
);
border-radius: 15px;
}
.article::before {
position: absolute;
content: "";
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: linear-gradient(
90deg,
rgb(255, 230, 250) 0%,
rgb(191, 217, 254) 100%
);
z-index: -1;
transition: opacity 0.35s linear;
opacity: 0;
border-radius: 15px;
}
.article:hover::before {
opacity: 1;
border-radius: 15px;
}
.footer {
position: fixed;
bottom: 5;
}
.body {
display: flex;
justify-content: space-between !important;
height: 100vh !important;
}