-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (89 loc) · 1.24 KB
/
style.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
body {
font-family: "Montserrat", sans-serif;
background-color: black;
}
h1,
.row__text {
color: white;
}
h2,
#chatUserName,
#chatDate {
color: blue;
}
#chatDate {
width: fit-content;
margin-right: 10%;
}
#chatImage {
width: 150px;
height: auto;
}
.info {
display: flex;
}
.form-row {
display: flex;
flex-direction: column;
}
.info {
display: flex;
}
.info__comment {
width: 45%;
}
.info__chat {
margin-left: 10%;
width: 45%;
}
#fullName,
#link,
#comments {
border: dashed blue;
background-color: black;
color: white;
}
.row__text {
margin: 15px 0;
}
#chatComment {
background-color: black;
color: white;
border-bottom: dashed blue;
}
#fullName,
#link {
height: 30px;
}
#comments {
height: 150px;
}
.btn {
border: none;
background-color: blue;
color: white;
padding: 0.6em 3em;
cursor: pointer;
margin-top: 20px;
font-size: medium;
}
.btn:hover {
background-color: rgb(1, 1, 72);
}
#chatComment {
padding: 20px;
}
.comment__word {
font-weight: 700;
}
.que {
color: white;
margin: 15px 0 0 15px;
}
.form-col {
display: flex;
}
.chat__container {
display: flex;
justify-content: space-between;
}