-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
117 lines (103 loc) · 2.24 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
body {
font-family: Arial;
padding-top: 40px;
}
.add-comment-form {
width: 25vw;
font-family: Arial,sans-serif;
}
.label-input {
display: block;
margin-bottom: 15px;
}
.input,
.textarea {
display: inline-block;
box-sizing: border-box;
width: 100%;
height: 30px;
padding: 0 11px;
margin: 0;
border-radius: 0;
border: 1px solid #cbd1d4;
font-size: 14px;
color: #333;
-webkit-appearance: none;
-moz-appearance: none;
-webkit-tap-highlight-color: transparent;
background-color: #fff;
}
.textarea {
height: 70px;
}
.button {
display: inline-block;
width: 100%;
box-sizing: border-box;
margin: 0;
border-radius: 0;
text-decoration: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
white-space: nowrap;
-webkit-appearance: none;
cursor: pointer;
height: 30px;
position: relative;
padding: 0 15px;
border: 1px solid;
font-size: 14px;
font-family: inherit;
line-height: 28px;
-webkit-transition: background-color .2s ease-in-out,color .2s ease-in-out,box-shadow .2s ease-in-out;
transition: background-color .2s ease-in-out,color .2s ease-in-out,box-shadow .2s ease-in-out;
color: #333;
border-color: #cbd1d4;
background-color: transparent;
}
.comments-wrapper {
display: flex;
justify-content: space-around;
margin-bottom: 25px;
}
.comments {
margin-bottom: 40px;
width: 400px;
background: #ccc;
color: #333;
}
.comment-item {
display: flex;
width: 100%;
padding: 10px;
border-bottom: 1px solid #eee;
justify-content: space-between;
box-sizing: border-box;
}
.comment-item:last-child {
border-bottom: 0;
}
.comment-item__edit {
display: inline-flex;
padding: 0 10px;
align-items: center;
color: #4183c4;
cursor: pointer;
}
.comments-additional {
width: 400px;
background: #723;
color: #fff;
}
.comments-additional .comment-item__title {
font-size: 24px;
}
.comments-additional .comment-item__text{
font-style: italic;
}
.comment-item__title {
font-weight: bold;
margin-bottom: 5px;
}