-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.css
More file actions
85 lines (75 loc) · 1.07 KB
/
editor.css
File metadata and controls
85 lines (75 loc) · 1.07 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
html {
height: 100%;
background-color: #f7f7f7;
}
body{
padding: 0;
margin: 0;
height: 100%;
}
#menu
{
margin: 0;
top: 0;
height: 50px;
display: flex;
}
#playground
{
width: 99%;
height: 90%;
color: black;
margin: 0.5%;
margin-top: 10px;
}
.newFile
{
background: url("imgs/file-solid.svg") no-repeat top left;
}
.saveFile
{
background: url("imgs/save-solid.svg") no-repeat top left;
}
.bold
{
background: url("imgs/bold-solid.svg") no-repeat top left;
}
.italic
{
background: url("imgs/italic-solid.svg") no-repeat top left;
}
.underline
{
background: url("imgs/underline-solid.svg") no-repeat top left;
}
.iconMenu
{
user-select: none;
display: block;
text-indent: -9999px;
width: 61px;
height: 45px;
background-size: 61px 45px;
padding: 2px;
margin: 5px;
border: 1px solid transparent;
border-radius: 5px;
}
.iconMenu:hover
{
border: 1px solid grey;
background-color: #ffff;
}
.iconMenu:active
{
background-color: #CCCCCC;
}
b{
font-weight: bold;
}
i{
font-style: italic;
}
underline{
text-decoration: underline;
}