-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstyle.css
87 lines (74 loc) · 1.13 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
html {
background: #000;
height: 100%;
}
body {
margin: 0;
min-height: 100%;
position: relative;
color: #fff;
font: normal 1em FreeSans, Helvetica, sans-serif;
background: url('drink.jpg') no-repeat;
background-position: 100% 0;
background-size: contain;
background-attachment: fixed;
}
#wrapper {
font-size: 1.5em;
width: 480px;
padding: 50px;
margin: 0;
}
#remotestorage-widget {
top: 0.5em;
right: 0.5em;
position: absolute;
}
#background {
width: 100%;
position: fixed;
top: -100px;
left: 0;
z-index: -1;
}
#add-drink input {
float: left;
width: 380px;
height: 30px;
padding: 10px;
font-size: 24px;
border: none;
}
#add-drink button {
width: 80px;
height: 50px;
padding: 10px;
font-size: 24px;
background: #ccc;
border: none;
cursor: pointer;
}
#add-drink button:hover {
background: #aaa;
}
li {
line-height: 1.5em;
}
li span {
cursor: pointer;
opacity: 0.3;
}
li span:hover {
opacity: 1;
}
#background-credit {
position: fixed;
bottom: 5px;
right: 10px;
font-size: 10px;
opacity: 0.3;
white-space: nowrap;
}
#background-credit a {
color: #fff;
}