-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
79 lines (71 loc) · 1.32 KB
/
styles.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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
font-family: Arial, sans-serif;
}
#square {
width: 700px;
height: 800px;
background-color: grey;
position: relative;
padding: 20px;
box-sizing: border-box;
color: blue;
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
}
h1 {
font-size: 24px;
margin: 0;
}
.profile-placeholder {
width: 50px;
height: 50px;
background-color: white;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 12px;
text-align: center;
color: black;
}
p {
font-size: 14px;
margin: 20px 0;
}
#white-square {
width: 500px;
height: 500px;
background-color: white;
position: relative;
margin: 0 auto;
padding: 20px;
box-sizing: border-box;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 20px;
}
.shop-icon {
text-align: center;
}
.placeholder {
width: 100%;
height: 150px;
background-color: lightgrey;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
color: black;
font-size: 16px;
padding: 10px;
box-sizing: border-box;
}