Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

Some Style Sheet issues

Questions related to using nuBuilder Forte.
Locked
toms
Posts: 785
Joined: Sun Oct 14, 2018 11:25 am

Some Style Sheet issues

Unread post by toms »

.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;
}
admin
Site Admin
Posts: 2814
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 25 times

Re: Some Style Sheet issues

Unread post by admin »

fixed now.
Locked