-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
108 lines (95 loc) · 1.66 KB
/
Copy pathmain.css
File metadata and controls
108 lines (95 loc) · 1.66 KB
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
body {
margin: 0;
width: 100%;
height: 100%;
}
figure {
margin: 0;
}
img {
width: 100%;
height: 100%;
object-fit: contain;
}
.container {
width: 80%;
height: 100%;
margin: 0 auto;
position: relative;
}
main {
width: 50%;
height: 60vh;
margin: 0 auto;
}
#drawing-canvas {
width: 100%;
height: 100%;
background: red;
margin: auto 0;
}
.recent-photos {
width: 100%;
}
.recent-photos-main {
background: white;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.recent-photos-main {
background: white;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.recent-photos-main .card {
background: white;
width: 40%;
height: 100%;
margin-bottom: 2%;
}
.recent-photos-main .card .card-profile {
width: 100%;
background: beige;
}
.recent-photos-main .card .card-profile a {
display: flex;
justify-content: space-evenly;
align-items: center;
}
.recent-photos-main .card .card-profile figure {
width: 15%;
}
.recent-photos-main .card .card-profile figure img {
width: 100%;
height: 100%;
object-fit: contain;
border: 1px solid white;
border-radius: 50%;
}
.recent-photos-main .card .card-main {
background: yellow;
width: 100%;
height: 100%;
}
.recent-photos-main .card .card-main figure {
width: 100%;
}
.recent-photos-main .card .card-main figure img {
width: 100%;
height: 100%;
object-fit: contain;
}
.info-list {
width: 25%;
position: absolute;
top: 7%;
right: 0;
}
.user-profile {
width: 20%;
position: absolute;
top: 7%;
left: 0;
}