回答編集履歴

2

tuii

2019/09/11 02:35

投稿

kyoya0819
kyoya0819

スコア10429

test CHANGED
@@ -1,4 +1,10 @@
1
1
  ```CSS
2
+
3
+ .btn{
4
+
5
+ text-align: right;
6
+
7
+ }
2
8
 
3
9
  .edit-btn, .delete-btn {
4
10
 
@@ -9,6 +15,8 @@
9
15
  ```
10
16
 
11
17
 
18
+
19
+ 以下全文
12
20
 
13
21
  ```CSS
14
22
 

1

tuiki

2019/09/11 02:35

投稿

kyoya0819
kyoya0819

スコア10429

test CHANGED
@@ -7,3 +7,133 @@
7
7
  }
8
8
 
9
9
  ```
10
+
11
+
12
+
13
+ ```CSS
14
+
15
+ .btn{
16
+
17
+ text-align: right;
18
+
19
+ }
20
+
21
+
22
+
23
+ .delete-btn a{
24
+
25
+ font: 20px 'Bradley Hand';
26
+
27
+ box-sizing: border-box;
28
+
29
+ width: 100%;
30
+
31
+ margin: auto;
32
+
33
+ padding: 0 16px 10px 0;
34
+
35
+ transition: 0.2s;
36
+
37
+ border: none;
38
+
39
+ outline: none;
40
+
41
+ color: #aaaa;
42
+
43
+ text-decoration: none;
44
+
45
+ }
46
+
47
+
48
+
49
+ .delete-btn a:hover{
50
+
51
+ color: #555555;
52
+
53
+ text-decoration: none;
54
+
55
+ }
56
+
57
+
58
+
59
+ .box {
60
+
61
+ padding: 0.5em 1em;
62
+
63
+ color: #222222;
64
+
65
+ a:hover {color:#111111; text-decoration: none;}
66
+
67
+ a:link {color:#222222; text-decoration: none;}
68
+
69
+ a:visited {color:#222222; text-decoration: none;}
70
+
71
+ font-size: 24px;
72
+
73
+ background: #eeeeee;
74
+
75
+ width: 30%;
76
+
77
+ margin-left: auto;
78
+
79
+ margin-right: auto;
80
+
81
+ margin-top: 30px;
82
+
83
+ margin-bottom: 10px;
84
+
85
+ font-family: 'TsukuARdGothic-Regular';
86
+
87
+ }
88
+
89
+
90
+
91
+ .edit-btn {
92
+
93
+ text-align: right;
94
+
95
+ }
96
+
97
+ .edit-btn a{
98
+
99
+ font: 20px 'Bradley Hand';
100
+
101
+ box-sizing: border-box;
102
+
103
+ width: 100%;
104
+
105
+ margin: auto;
106
+
107
+ padding: 0 16px 10px 0;
108
+
109
+ transition: 0.2s;
110
+
111
+ border: none;
112
+
113
+ outline: none;
114
+
115
+ color: #aaaa;
116
+
117
+ text-decoration: none;
118
+
119
+ }
120
+
121
+
122
+
123
+ .edit-btn a:hover{
124
+
125
+ color: #555555;
126
+
127
+ text-decoration: none;
128
+
129
+ }
130
+
131
+
132
+
133
+ .edit-btn, .delete-btn {
134
+
135
+ display: inline-block
136
+
137
+ }
138
+
139
+ ```