-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·110 lines (92 loc) · 1.39 KB
/
style.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/* Copyright 2015 Jules and Theo Zimmermann
All rights reserved
**/
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
background-color: #eee;
}
header {
height: 8%;
background-color: rgb(213,255,213);
font-family: cursive;
}
header h1 {
display: inline;
margin-left: 1%;
font-size: 20px;
}
header h2 {
display: inline;
margin-left: 1%;
font-size: 15px;
}
header a {
text-decoration: none;
color: black;
}
header .menu {
float: right;
margin-left: 10%;
margin-right: 2%;
margin-top: 1%;
font-size: 20px;
color: #bbb;
}
header .menu:hover {
color: black;
}
#text {
float: left;
width: 56%;
margin: 1%;
height: 84%;
}
#text > textarea, #text > p {
margin: 0;
border: solid #ccc;
padding: 10px;
width: 100%;
height: 100%;
background-color: white;
font-family: cursive;
font-size: 16px;
overflow: scroll;
}
#text > textarea {
resize: none;
}
.ui-dialog, .ui-dialog button, #edits {
font-family: monospace;
font-size: 14px;
}
#edits {
float: right;
width: 36%;
margin: 1%;
height: 84%;
padding: 10px;
border: solid #eee;
background-color: white;
overflow: scroll;
}
#edits button {
font-family: inherit;
}
#propose {
width: 50%;
margin-left: 25%;
margin-bottom: 10px;
}
button.active {
border-style: inset;
}
ins {
background-color: rgb(213,255,213);
}
del {
background-color: #ffe6e6;
}