aboutsummaryrefslogtreecommitdiffstats
path: root/example/tweeter/style.css
blob: 0f2aaecdefd0f1799e40e9f0c55eab97a7e9d17d (plain)
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
.loading {display: none;}
.fetching .loading {display: block;}

a {
  color: blue;
}

h1 {
  background-color: black;
  margin: 0;
  padding: .25em;
  color: white;
  border-bottom: 5px solid gray;
}

.box {
  border: 2px solid gray;
}

.tweeter {
  margin-right: 360px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: .25em;
  padding: 2px;
}

li img {
  float: left;
  margin: 2px;
  margin-right: .5em;
  max-height: 48px;
  min-height: 48px;
}

li.even {
  background-color: lightgray;
}


.addressbook {
  float: right;
  width: 350px;
}

.clrleft {
  clear: left;
}

.notes {
  font-size: .8em;
  color: gray;
}

.username, .nickname {
  font-weight: bold;
}

.editor {
  padding: 4px;
}

label {
  color: gray;
  display: inline-block;
  width: 75px;
  text-align: right;
  padding: 2px;
  margin-top: 10px;
}

.editor input[type=text],
.editor textarea {
  width: 230px;
  vertical-align: text-top;
}
  
.editor TEXTAREA {
  height: 50px;
}

.debug{
  font-size: .7em;
  white-space: pre;
  padding: 0;
  margin: 0;
}