-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrite_note.css
More file actions
116 lines (98 loc) · 1.77 KB
/
write_note.css
File metadata and controls
116 lines (98 loc) · 1.77 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
@font-face {
font-family: 'NanumSquareRound';
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/NanumSquareRound.woff') format('woff');
}
* {
margin: 0px;
padding: 0px;
background-color: #E6E6E6;
font-family: 'NanumSquareRound';
}
a {
text-decoration-line: none;
}
.main {
height: 300px;
width: 100%;
margin-top: -1%;
}
.id-box {
display: flex;
color: #9c9c9c;
}
.post-id-input {
width: 35%;
padding: 10px;
font-size: 18px;
border: 1px solid#9c9c9c;
margin: 3%;
}
.title {
margin-left: 3%;
font-weight: bolder;
font-size: xx-large;
margin-top: 50px;
}
.main #id_nav {
position: absolute;
width: 10%;
display: flex;
justify-content: space-between;
background-color: #E6E6E6;
border: 0.0625rem solid #E6E6E6;
padding: 5px;
overflow: auto;
list-style: none;
border: 1px solid #9c9c9c;
margin-top: -3%;
margin-left: 3%;
}
#id_nav li {
background-color: #E6E6E6;
}
#id_nav button {
border: none;
cursor: pointer;
}
.name1 {
font-weight: 700;
}
.id1,
.name1 {
background-color: #E6E6E6;
display: flex;
margin-bottom: 5px;
margin-top: 5px;
}
.content-box {
display: flex;
color: #9c9c9c;
height: 100%;
}
.post-content-input {
width: 90%;
padding: 15px;
font-size: 18px;
border: 1px solid#9c9c9c;
margin-left: 3%;
}
.button {
text-align: center;
margin-top: 10px;
}
.send-button {
background-color: #9b47a5;
border: #9b47a5;
color: #fff;
padding: 10px 20px;
font-size: 14px;
border-radius: 8%;
}
.cancellation-button {
background-color: #b1b1b1;
border: #b1b1b1;
color: #fff;
padding: 10px 25px;
font-size: 14px;
border-radius: 8%;
}