-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
123 lines (105 loc) · 1.83 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
body {
width: 300px;
height: 500px;
border: 5px solid #14B1AB;
font-family: 'Roboto', sans-serif;
}
header {
height: 40px;
display: flex;
text-align: end;
}
.fa {
font-size: 70px;
color:#F9D56E;
}
img {
width: 100%;
}
.fa-cog {
margin: 10px;
color: #14B1AB;
}
#main-body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#body {
background-color:#f4efd2;
}
footer {
height: 50px;
width: 290px;
background-color: #14B1AB;
position:absolute;
width:290px;
height:60px;
}
.body-content {
display: flex;
flex-direction: column;
text-align: center;
align-items: center;
justify-content: center;
padding: 20px;
height: 395px;
}
.body-content.flagged, .body-content.reports {
justify-content: flex-start;
gap: 20px;
}
#img-box {
height: 100px;
width: 120px;
}
.icon-button {
background: none;
color: inherit;
border: none;
padding: 0;
font: inherit;
cursor: pointer;
outline: inherit;font-size: x-small;
color:#F9D56E;
font-weight: 500;
padding: 5px;
height: 50px;
width: 60px;
border-radius: 10px;
background-color: #329695;
}
.icon-button.report-page {
width: 200px;
background-color:#14B1AB;
}
#icon-box {
display: flex;
justify-content: space-around;
align-items: center;
height: 60px;
}
#icon-text {
display: flex;
justify-content: space-around;
align-items: center;
font-size: x-small;
color:#F9D56E;
font-weight: 500;
}
#messages {
width: 250px;
height: 500px;
display: flex;
flex-direction: column;
gap: 20px;
padding-top: 20px;
}
.message-box {
border-radius: 6px;
background-color:#eee3a2 ;
font-size: 15px;
padding: 5px;
color: rgb(75, 75, 75);
}