blob: 3b67195540c3137f6910a39f5d8273051f50f941 (
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
95
|
@import "bootstrap-1.0.0.min.css";
@import url(http://fonts.googleapis.com/css?family=Lobster|Comfortaa);
.topbar h3{ margin-left: 75px; }
.topbar ul{ padding-left: 75px; }
div.topbar ul.secondary-nav { padding-right: 75px; }
.logo{ font-family: 'Lobster', arial, serif; }
.balance tr td { font-weight: bold; }
.positive { color: green; }
.negative { color: red; }
.sidebar h2 { text-align: center; }
.sidebar button{ margin-top: 10px; float: right; }
.right h3 { float: right; }
#bills { color: black; }
#header{
margin-top: -40px;
background-color: #ABE128;
height: 180px;
padding: 50px 0 0 0;
}
#header .slide {
font-family: 'Comfortaa', arial, serif;
height: 165px;
padding-top: 15px;
background-image: url("gradient.png");
background-position: center top;
background-repeat: no-repeat;
}
#header .slide {
width: 750px;
margin: 0 auto;
}
#header .slide h1{
margin-bottom: 30px;
color: #000;
}
#header .slide .about_link:hover {
color: #ABE128;
}
#header .slide .about_link {
margin-left: 220px;
padding: 7px 15px;
background-color: #222;
border-radius: 10px;
-moz-border-radius: 10px;
color: white;
text-decoration: none;
display: inline;
}
#header .additional-content{
font-family: 'Comfortaa', arial, serif;
float: right;
position: relative;
top: -150px;
margin-right: 200px;
margin-bottom: -100px;
color: #000;
}
.home form button{
float: right;
margin-right: 100px;
}
.home .create h3{
text-align: right;
margin-right: 100px;
}
.invites textarea{
width: 800px;
height: 100px;
}
.footer{
position: absolute;
bottom: 0px;
width: 100%;
text-align: center;
background-color: #fff;
opacity: 0.8;
}
.identifier{
text-align: right;
margin-top: -15px;
}
|