blob: 9cc9e0d313b822aeeb788065c2526672b801a428 (
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
|
body {
background-color: #161012;
color: white;
}
p {
font-size: 14px;
}
hr {
border: 1px #ffd081 solid;
width: 200px;
}
.container-fluid {
width: 100%;
margin: 20px auto;
}
.table {
color: white;
}
.nav-link {
color: white;
cursor: pointer;
cursor: hand;
}
.well {
background-color: #2c180d;
border: 1px black solid;
text-align: center;
}
.banner {
height: 90px;
background-image: url("/static/images/violin-strip.jpg");
background-repeat: repeat;
background-position: left;
}
.banner-title {
width: *;
color: #59200e;
font-size: 28px;
font-weight: bold;
text-align: center;
}
.banner-menu {
width: 150px;
text-align: right;
vertical-align: top;
}
.form-control {
width: 600px;
background-color: #ffd081;
}
.contact-info {
color: #59200e;
font-size: 15px;
font-weight: bold;
line-height: 0.4;
}
.modal-content {
background-color: #161012;
}
#body {
min-height: 500px;
}
#footer {
text-align: center;
}
|