-
Notifications
You must be signed in to change notification settings - Fork 0
/
myNotesStyles.css
55 lines (54 loc) · 1.13 KB
/
myNotesStyles.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
html {
font-family: Futura;
background: rgb(251,251,252);
color: rgb(98,98,99);
overflow: auto;
}
#wrap {
font-family: Futura;
width: 100%;
height: 100%;
/*background: rgb(251,251,252);*/
/*color: rgb(251,251,252);*/
padding: 0px;
}
textarea {
font-family: Futura;
width: 100%;
height: 600px;
background: rgb(238,240,241);
color: rgb(98,98,99);
border: 1px solid rgb(208,209,210);
outline: none;
overflow: auto;
box-sizing: border-box;
}
button {
font-family: Futura;
color: rgb(98,98,99);
cursor: pointer;
background: rgb(251,251,251);
border: 1px solid rgb(208,208,210);
padding: 5px;
margin: 2px;
margin-top: 10px;
display: inline-block;
}
button:hover {
background: rgb(98,98,99);
color: rgb(251,251,252);
border: 1px solid rgb(150,150,150);
}
button:focus {
background-color: rgb(194,194,197);
color: rgb(41,49,52);
border: 1px solid rgb(63,75,78);
}
#title {
font-family: Futura;
text-decoration: none;
font-size: 1em;
text-align: center;
padding: 0px;
margin: 0px;
}