Some Style Sheet issues
Posted: Sun Jan 14, 2018 3:42 pm
.nuTab {
display: inline;
border-style: solid;
border-width: 0px;
border-color: #CCCCCC;
font-size: 14px; <---- missing p
padding: 8px 10px 1px 10px;
height: 24px;
}
.nuButton, .input_button {
color: white;
background-color: #00ADEF;
font-size: 13px;
display: inline;
border-style: solid;
font-size: 14px; <-- duplicate property font-size
height: 40px;
padding: 0px 6px 0px 6px;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
border-color: #2a8bcc;
border-width: 0px 0px 1px 0px;
}
.nuUserHomeButton{
color: white;
background-color: #88cb51;
font-size: 13px;
display: inline;
border-style: solid;
font-size: 14px; <-- duplicate property font-size
height: 40px;
padding: 0px 6px 0px 6px;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
border-color: #87A96B;
border-width: 0px 0px 1px 0px;
}
.nuActionButton {
color: white;
background-color: #00ADEF;
font-size: 13px;
display: inline;
border-style: solid;
font-size: 12px; <-- duplicate property font-size
height: 20px;
padding: 0px 6px 0px 6px;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
border-color: #2a8bcc;
border-width: 0px 0px 1px 0px;
}
.nuDragToolbar {
cursor: pointer;
list-style-type: none;
text-align: center;
padding-top:4px;
font-family: Helvetica;
font-size: 14; --< only “0” can be a “unit”. You must put a unit after your number :
z-index: 1000;
}
.nuWord {
font-family:Tahoma,Geneva,Arial,sans-serif;
font-style:bold; <-- “bold” is not a “font-style” value :
}
.nuLogin {
background-color: lightgrey;
border-style: none;
top: 100px;
width: 300px;
position: 'absolute'; <--- “'absolute'” is not a “position” value : remove the apostrophes
}
.nuOptionsItemShortcutKey {
background-color: orange;
color: darkslategray;
height:20px;
display: inline-block;
padding-top: 4px 4px 8px 4px; <---- Too many values
font-size: 10px;
}
display: inline;
border-style: solid;
border-width: 0px;
border-color: #CCCCCC;
font-size: 14px; <---- missing p
padding: 8px 10px 1px 10px;
height: 24px;
}
.nuButton, .input_button {
color: white;
background-color: #00ADEF;
font-size: 13px;
display: inline;
border-style: solid;
font-size: 14px; <-- duplicate property font-size
height: 40px;
padding: 0px 6px 0px 6px;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
border-color: #2a8bcc;
border-width: 0px 0px 1px 0px;
}
.nuUserHomeButton{
color: white;
background-color: #88cb51;
font-size: 13px;
display: inline;
border-style: solid;
font-size: 14px; <-- duplicate property font-size
height: 40px;
padding: 0px 6px 0px 6px;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
border-color: #87A96B;
border-width: 0px 0px 1px 0px;
}
.nuActionButton {
color: white;
background-color: #00ADEF;
font-size: 13px;
display: inline;
border-style: solid;
font-size: 12px; <-- duplicate property font-size
height: 20px;
padding: 0px 6px 0px 6px;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
border-color: #2a8bcc;
border-width: 0px 0px 1px 0px;
}
.nuDragToolbar {
cursor: pointer;
list-style-type: none;
text-align: center;
padding-top:4px;
font-family: Helvetica;
font-size: 14; --< only “0” can be a “unit”. You must put a unit after your number :
z-index: 1000;
}
.nuWord {
font-family:Tahoma,Geneva,Arial,sans-serif;
font-style:bold; <-- “bold” is not a “font-style” value :
}
.nuLogin {
background-color: lightgrey;
border-style: none;
top: 100px;
width: 300px;
position: 'absolute'; <--- “'absolute'” is not a “position” value : remove the apostrophes
}
.nuOptionsItemShortcutKey {
background-color: orange;
color: darkslategray;
height:20px;
display: inline-block;
padding-top: 4px 4px 8px 4px; <---- Too many values
font-size: 10px;
}