-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
142 lines (116 loc) · 2.98 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
.navbar {
width: 100%;
background-position: center;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
background: transparent;
text-shadow: 0 0 10px #FFFFFF;
}
.navbar-default .navbar-nav > .active > a, .navbar-nav > .open > a, .navbar-default .navbar-nav>.active>a:hover {
background: transparent;
/* text-shadow: 0 0 20px #FFFFFF, 0 0 20px #FFFFFF, 0 0 20px #FFFFFF, 0 0 20px #FFFFFF; */
text-decoration: underline;
}
.navbar-default .navbar-nav > li > a {
/* text-shadow: 0 0 2px #FFFFFF; */
}
.main-container {
margin-top: 60px;
max-width: 1170px !important;
}
.navbar-default .navbar-brand {
/* text-shadow: 0 0 3px #FFFFFF; */
font-size: 16pt;
font-weight: bold;
}
.navbar-fixed-top {
border-width: 2px 0 2px 0;
border-color: #444444;
box-shadow: 0 4px 8px grey;
}
.navbar .nav > li > a {
font-size: 11pt;
font-weight: bold;
}
.dropdown-menu {
color: #222222;
background-color: #9a9695;
border: 1px solid #444444;
}
.dropdown-menu>li>a, .dropdown-menu>li>a {
color: #222222;
background-color: #9a9695;
}
.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
color: #222222;
background-color: #9a9695;
text-shadow: 0 0 2px #FFFFFF;
}
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
width: 100%; /* Full width */
padding: 12px; /* Some padding */
border: 1px solid #ccc; /* Gray border */
border-radius: 4px; /* Rounded borders */
box-sizing: border-box; /* Make sure that padding and width stays in place */
margin-top: 6px; /* Add a top margin */
margin-bottom: 16px; /* Bottom margin */
resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}
/* Style the submit button with a specific background color etc */
input[type=submit], input[type=reset] {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
background-color: #45a049;
}
/* Add a background color and some padding around the form */
.contact_container {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
.col-sm-8 {
width: 100%;
background-color: black;
}
.shiny_frame {
margin-left: -30px;
width: 100%;
height: 2300px;
}
.footer_section {
background-color: #CCCCCC;
position: absolute;
left: 0;
bottom: auto;
width: 100%;
}
.footer_content {
width: 100%;
text-align: center;
font-size: 11px;
margin: 20px 0 20px 0;
}
/* Style all font awesome icons */
.fa {
padding: 10px;
font-size: 25px;
text-align: center;
text-decoration: none;
border-radius: 50%;
color: #FFFFFF;
}
/* Add a hover effect if you want */
.fa:hover {
opacity: 0.7;
}
.footer_logo {
height: 50px;
}