-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
60 lines (51 loc) · 998 Bytes
/
index.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
.form {
display: flex;
align-items: center;
justify-content: space-between;
background-color:rgb(57, 59, 199);
color: rgb(241, 241, 246);
padding: 10px;
border-radius: 10px;
}
.profile {
display: flex;
align-items: center;
background-color:rgb(240, 221, 243);
color: rgb(26, 26, 112);
padding: 10px;
border-radius: 10px;
}
.user-info {
background-color: whitesmoke;
border-radius: 20px;
padding: 50px;
width: fit-content;
}
.albums-list {
background-color: rgb(200, 197, 243);
border-radius: 20px;
padding: 50px;
width: fit-content;
}
.post-list {
background-color: rgb(201, 151, 248);
border-radius: 20px;
padding: 50px;
width: fit-content;
}
.comment-list {
color: white;
background-color: rgb(71, 71, 155);
border-radius: 20px;
padding: 50px;
width: fit-content;
display: none;
}
.loaded {
}
.comment-list {
display: none;
}
.visible {
display: block;
}