-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (109 loc) · 1.8 KB
/
style.css
File metadata and controls
117 lines (109 loc) · 1.8 KB
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
@charset "UTF-8";
body {
margin: 0;
}
body li {
list-style-type: none;
}
body ul {
padding-left: 10px;
}
#app {
display: flex;
}
/* 사이드 바 */
.posts-page {
width: 15rem;
height: 100vh;
margin-right: 50px;
padding: 10px;
font-size: 15px;
background-color: #f7f6f3;
}
.post {
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 5px;
cursor: pointer;
}
.post:hover {
background-color: #ebebea;
}
.post:hover .button-group > button {
opacity: 1;
}
.button-group {
width: 50px;
}
.button-group > button {
width: 20px;
height: 20px;
align-items: center;
background-color: #ebebea;
border: none;
border-radius: 5px;
font-size: 10px;
color: #676662;
line-height: 10px;
opacity: 0;
}
.button-group > button:hover {
background-color: #dddddc;
cursor: pointer;
}
.toggle-button {
background: none;
border: none;
border-radius: 5px;
font-size: 20px;
cursor: pointer;
}
.toggle-button:hover {
background-color: #dddddc;
}
.page-create {
width: 100%;
padding: 10px;
text-align: left;
background: none;
border: none;
border-top: 1px solid #dddddc;
border-radius: 5px;
font-size: 16px;
color: #767571;
cursor: pointer;
}
.page-create:hover {
border-top-color: #ebebea;
background-color: #ebebea;
}
/* 에디터 */
.editor {
display: flex;
flex-direction: column;
margin: 50px 10px 10px 10px;
}
.editor * {
margin-bottom: 10px;
padding: 10px;
border: none;
border-radius: 8px;
outline: none;
background-color: none;
}
.editor *:hover {
background-color: #f5f5f5;
transition: background-color 0.5s ease-in-out;
}
.editor *:active {
background-color: #f5f5f5;
}
.editor .title {
font-size: 30px;
font-weight: bold;
}
.editor .content {
font-size: 15px;
}
/*# sourceMappingURL=style.css.map */