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
|
background-color: hsl(210, 10%, 96%);
color: hsl(210, 10%, 96%);
}
#logo {
padding: 10px;
}
#menu li {
padding: 10px 5px;
border-bottom: 1px solid hsl(210, 10%, 90%);
text-align: center;
cursor: pointer;
color: hsl(210, 10%, 50%);
list-style-type: none;
font-size: 20px;
}
#menu li:hover {
background-color: hsl(210, 10%, 92%);
color: hsl(210, 80%, 50%);
text-shadow: 0px 0px 1px hsl(210, 100%, 70%);
}
#page {
background-color: hsl(210, 0%, 100%);
height: 500px;
overflow: auto;
}
#page h1 {
margin: 0 0 10px 0;
color: hsl(210, 50%, 50%);
font: bold 30px 'Yanone Kaffeesatz', "Liberation Sans Narrow", sans-serif;
|
|
>
|
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
|
background-color: hsl(210, 10%, 96%);
color: hsl(210, 10%, 96%);
}
#logo {
padding: 10px;
}
#menu li {
padding: 10px 0;
border-bottom: 1px solid hsl(210, 10%, 90%);
text-align: center;
cursor: pointer;
color: hsl(210, 10%, 50%);
list-style-type: none;
font-size: 20px;
}
#menu li:hover {
background-color: hsl(210, 10%, 92%);
color: hsl(210, 80%, 50%);
text-shadow: 0px 0px 1px hsl(210, 100%, 70%);
}
#page {
background-color: hsl(210, 0%, 100%);
min-width: calc(100% - 51px);
height: 500px;
overflow: auto;
}
#page h1 {
margin: 0 0 10px 0;
color: hsl(210, 50%, 50%);
font: bold 30px 'Yanone Kaffeesatz', "Liberation Sans Narrow", sans-serif;
|