-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (80 loc) · 1.62 KB
/
styles.css
File metadata and controls
95 lines (80 loc) · 1.62 KB
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
body {
background-color: lightblue;
}
a , a:hover {
color: blue;
}
#mybar {
border-radius: 0px;
background-color: black;
}
#mybar.container-fluid {
padding-left: 0px;
padding-right: 0px;
}
.navbar-default .navbar-header .navbar-brand {
font-weight: bold;
color: orange;
text-shadow: 2px 2px 5px red;
font-size: 2.0em;
padding-left: 20px;
}
/* style of menu button */
.navbar-default .navbar-toggle {
border-color: orange;
color: orange
}
/* color of the icon-bar on menu button */
.navbar-default .navbar-toggle .icon-bar {
background-color: orange !important;
}
/* colors of menu items */
.navbar-default .navbar-nav > li > a {
color: orange;
font-size: 1.2em;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
background-color: yellow;
color: red;
font-size: 1.5em;
font-weight: bolder;
}
#header.container-fluid {
padding-left: 0px;
padding-right: 0px;
}
#header h1 {
color: var(--black);
color: green;
text-align: center;
}
#content.container-fluid {
padding-left: 50px;
padding-right: 50px;
}
#content section {
margin: 10px;
margin-bottom: 30px;
padding: 5px;
border: 1px solid black;
background-color: grey;
}
#content h2{
padding-top: 10px;
text-align: center;
color: black;
}
#content p {
padding-left: 20px;
padding-right: 20px;
padding-bottom: 10px;
}
#content .section-chicken {
background-color: LightGray;
}
#content .section-beef {
background-color: Orange;
}
#content .section-sushi {
background-color: MediumSeaGreen;
}