-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
85 lines (69 loc) · 1.02 KB
/
styles.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
nav .navbar-brand
{
/* size for brand */
font-size: xx-large;
}
.bgc
{
background-color: #9a0e2a;
}
/* Colors for brand */
nav .navbar-brand .white
{
color: #ffffff;
}
ul
{
list-style-type: none;
}
a:hover
{
color: grey;
}
main .form-control
{
/* Center form controls */
display: inline-block;
/* Override Bootstrap's 100% width for form controls */
width: auto;
}
main
{
/* Scroll horizontally as needed */
overflow-x: auto;
/* Center contents */
text-align: center;
}
main img
{
/* Constrain images on small screens */
max-width: 100%;
}
body
{
padding-left: 80px;
padding-right: 80px;
padding-top: 50px;
padding-bottom: 50px;
background-image: url(/static/background.jpg);
background-attachment: fixed;
background-repeat: no-repeat;
background-size: 1920px 1080px;
}
#fff
{
border: 5px solid #9a0e2a;
}
.txt
{
color: #ffffff;
}
mark
{
background-color: #9a0e2a;
color: white;
}
hr{
color: #9a0e2a;
background-color: #9a0e2a;
}