-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
69 lines (60 loc) · 920 Bytes
/
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
body {
background-color: #dad2c8;
margin: 0;
font-family: Helvetica;
font-size: 1.2em;
}
x-list {
display: block;
float: left;
max-width: 300px;
}
x-list .inner {
padding: 20px;
}
x-list .list {
margin: 10px 0;
}
x-item {
cursor: pointer;
display: block;
overflow: hidden;
padding: 10px;
}
x-text {
display: block;
float: left;
}
x-text .inner {
padding: 20px;
}
x-text input {
background: transparent none;
border: 0;
display: block;
font-size: 1em;
margin: 10px 0 0 0;
outline: none;
padding: 10px;
width: 80%;
}
x-text textarea {
background: transparent none;
border: 0;
display: block;
font-size: 1em;
margin: 0;
outline: none;
overflow: hidden;
padding: 10px;
resize: none;
width: 80%;
}
x-item:hover,
x-item[selected],
x-text input:focus,
x-text input:hover,
x-text textarea:focus,
x-text textarea:hover {
background-color: #e8e3dc;
}