質問編集履歴

1

問題点周辺のcssを追記させていただきました

2020/06/22 08:14

投稿

ko_no
ko_no

スコア16

test CHANGED
File without changes
test CHANGED
@@ -91,3 +91,71 @@
91
91
 
92
92
 
93
93
  ```
94
+
95
+ index.scss
96
+
97
+ ```
98
+
99
+ &__group{
100
+
101
+ height: 80px;
102
+
103
+ border-bottom: solid 1px rgb(163, 161, 161);
104
+
105
+ margin: 5px 0px 0px 5px;
106
+
107
+ position: relative;
108
+
109
+ &-name{
110
+
111
+ font-size: 20px;
112
+
113
+ color: rgb(90, 89, 89);
114
+
115
+ }
116
+
117
+ &-text{
118
+
119
+ font-size: 15px;
120
+
121
+ color: rgb(146, 145, 145);
122
+
123
+ }
124
+
125
+ &-time{
126
+
127
+ font-size: 15px;
128
+
129
+ color: rgb(146, 145, 145);
130
+
131
+ }
132
+
133
+ &-btn{
134
+
135
+ background-color: rgb(107, 107, 107);
136
+
137
+ text-decoration: none;
138
+
139
+ color: white;
140
+
141
+ height: 30px;
142
+
143
+ width: 80px;
144
+
145
+ line-height: 30px;
146
+
147
+ text-align: center;
148
+
149
+ border-radius: 5px;
150
+
151
+ position: absolute;
152
+
153
+ bottom: 3px;
154
+
155
+ right: 3px;
156
+
157
+ }
158
+
159
+ }
160
+
161
+ ```