-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount-activity.css
108 lines (92 loc) · 2.21 KB
/
account-activity.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
@import url("https://fonts.googleapis.com/css?family=Lato:400i,600");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap')
body {
margin: 0px;
padding: 20vmin 20vmin 20vmin 30vmin;
text-align: center;
font-family: 'Lato';
color: rgba(0,0,0,0.6);
font-weight: 400;
font-style: italic;
-webkit-font-smoothing: antialiased;
}
div.a {
text-indent: 25px;
}
.poppins-semibold {
font-family: "Poppins", sans-serif;
font-weight: 600;
font-style: normal;
}
.body {
position: fixed;
left: 0px;
top: 0px;
width: 1000vw;
height: 100vh;
filter: blur(10px);
transform: scale(1.2);
animation: getBlurry 0.5s linear;
background: url('https://images.unsplash.com/photo-1518002196537-b51e4e4d0f65?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=57ea43a4c76c7df170d96f844ea7c603');
background-size: cover;
}
@keyframes getBlurry {
0% {
filter: blur(0px);
transform: scale(1);
}
100% {
filter: blur(10px);
transform: scale(1.2);
}
}
.chat {
position: relative;
display: inline-block;
width: 40vw;
min-width: 800px;
max-width: 80%;
animation: popFromBottom 0.5s ease-in-out;
}
@keyframes popFromBottom {
0% {
transform: translateY(300px) scale(0);
}
100% {
transform: translateY(0px) scale(1);
}
}
img {
height: 22vmin;
margin-left: -6.4%;
}
.profile {
display: inline-block;
width: 19vmin;
height: 22vmin;
border-radius: 50%;
overflow: hidden;
position: absolute;
left: -16vmin;
top: -1vmin;
border: 1vmin solid #fff;
}
.message {
background: #ffe271;
padding: 2vmin 5vmin 2vmin 10vmin;
border-radius: 0px 50px 50px 0px;
font-size: 3vmin;
text-align: left;
}
.user {
text-align: left;
padding: 2px 30px 5px 60px;
border-radius: 0px 0px 20px;
font-size: 3.2vmin;
background: #fff;
color: #83aebd;
display: inline-block;
float: left;
font-weight: 600;
font-style: normal;
}