-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
90 lines (90 loc) · 1.34 KB
/
index.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
*{
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
box-sizing: border-box;
}
html{
height: 100%;
}
body{
width: 100%;
height: 100vh;
background: #FFF;
overflow: hidden;
}
.header{
height: 80px;
background: black;
}
#el{
width:100%;
height: 100%;
}
.content{
position: relative;
width: 100%;
height:90%;
}
.note{
width: 240px;
position: absolute;
top:200px;
height: auto;
left: 120px;
border:1px solid black;
}
.note .title{
cursor: pointer;
height: 40px;
/*border:1px solid black;*/
text-align: center;
line-height: 40px;
color: #FFF;
}
.note .content{
min-height: 300px;
padding: 15px;
background: #fff;
}
.pink{
background: red;
}
.red{
background: pink;
}
.blue{
background: blue;
}
.black{
background: black;
}
.note textarea{
width: 100%;
min-height: 200px;
outline: none;
resize: none;
border: none;
}
.title{
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
height: 40px;
background: red;
text-align: center;
line-height: 40px;
color: #fff;
cursor: pointer;
}
button{
position: absolute;
top:0;
right: 0;
width: 20px;
height:20px;
opacity: 0;
}