Marks
|
|
|
VECĀ MIESA
Foruma ieraksti: 1472
UWM Reputācija:
|
uWEBMEISTARS ordeņi:
1. līmenis
2. līmenis
3. līmenis
Jaunākie apbalvojumi:
|
@Marks raksta .. :
Bilde ka izskatisies navigacija:
HTML Kods, liekam kur vajag. Code <ul class="nav"> <li><a href="#">Sākums</a></li> <li class="dropdown"> <a href="#">Darbs</a> <ul> <li><a href="#">Identitātes Dizaineris</a></li> <li><a href="#">Web Dizains</a></li> <li class="dropdown"> <a href="#">Programmēšana</a> <ul> <li><a href="#">Level 2</a></li> <li><a href="#">Level 2</a></li> <li class="dropdown"> <a href="#">Level 2</a> <ul> <li><a href="#">Level 3</a></li> <li><a href="#">Level 3</a></li> <li><a href="#">Level 3</a></li> <li><a href="#">Level 3</a></li> <li class="dropdown"> <a href="#">Level 3</a> <ul> <li><a href="#">Level 4</a></li> <li><a href="#">Level 4</a></li> <li><a href="#">Level 4</a></li> <li><a href="#">Level 4</a></li> <li><a href="#">Level 4</a></li> </ul> </li> </ul> </li> <li><a href="#">Level 2</a></li> <li><a href="#">Level 2</a></li> </ul> </li> <li><a href="#">Aplikāciju Programmēšana</a></li> <li><a href="#">eforums</a></li> </ul> </li> <li><a href="#">Portofolio</a></li> <li><a href="#">Blogs</a></li> <li><a href="#">Komānija</a></li> <li><a href="#">Par Mums</a></li> <li><a href="#">Kontakti</a></li> </ul>
CSS kods, kur iesprauzam. :) : Code /* General nav styling */ .nav { /* Layout & positioning */ display: inline-block; position: relative; margin: 0; border: 1px solid #397739; padding: 2px; list-style: none; line-height: 1; vertical-align: baseline; border-radius: 2px;
/* Background & effects */ background: #489d48; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3); }
/* The list elements which contain the links */ .nav>li { /* Layout & positioning */ display: block; float: left; position: relative; margin: 0; padding: 0; border-top: 1px solid #397739; border-bottom: 1px solid #397739; }
/* The navigation links */ .nav>li>a { /* Layout & positioning */ display: block; position: relative; top: 0px; padding: 8px 20px; border-left: 1px solid #ddd; border-right: 1px solid #fff;
/* Typography */ font-family: Arial, Helvetica, sans-serif; font-size: 13px; text-decoration: none; color: #777; text-shadow: 0 1px 0 #fff;
/* Background & effects */ background: #eee; /* Background for IE9 & older browsers */ background: -webkit-linear-gradient(bottom, #ececec, #f3f3f3); /* Background for Chrome & Safari */ background: -moz-linear-gradient(bottom, #eee, #f7f7f7); /* Background for Firefox */ background: -o-linear-gradient(bottom, #eee, #f7f7f7); /* Background for Opera */ background: -ms-linear-gradient(bottom, #eee, #f7f7f7); /* Background for IE10 */ box-shadow: inset 0 1px 0 #fff; }
/* The hover state of the links */ .nav>li>a:hover, .nav>li:hover>a { color: #4d9a4d; background: #fcfcfc; }
.nav>li:first-child>a { border-left: 0; border-top-left-radius: 1px; border-bottom-left-radius: 1px; }
.nav>li:last-child>a { border-right: 0; border-top-right-radius: 1px; border-bottom-right-radius: 1px; }
.nav>li:first-child { border-left: 1px solid #397739; border-top-left-radius: 1px; border-bottom-left-radius: 1px; }
.nav>li:last-child { border-right: 1px solid #397739; border-top-right-radius: 1px; border-bottom-right-radius: 1px; }
/* General submenu styling */ .nav>li>ul, .nav ul ul { /* Layout & positioning */ display: block; position: absolute; list-style: none; margin: 0; padding: 2px; border: 1px solid #397739; border-radius: 2px;
/* Background & effects */ background: #489d48; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3); opacity: 0; /* The fade-slide effect, created by changing the position and the opacity */ -webkit-transition: top .15s ease-in, opacity .15s ease-in; -ms-transition: top .15s ease-in, opacity .15s ease-in; -moz-transition: top .15s ease-in, opacity .15s ease-in; -o-transition: top .15s ease-in, opacity .15s ease-in; }
/* Level 1 submenu positioning */ .nav>li>ul { top: 70px; left: -9999px; }
.nav>li:hover>ul { top: 40px; opacity: 1; left: -3px; }
/* Level 2+ submenus positioning */ .nav ul ul { left: 140px; top: 30px; }
.nav ul li:hover>ul { opacity: 1; top: -4px; }
.nav>li li { display: block; position: relative; }
/* A little hack which stops the level 1 submenus from hiding when the mouse is not on the parent link anymore */ .nav>li>ul::after { content: ""; position: absolute; top: 0px; left: 0px; width: 100%; height: 15px; background: transparent; background: rgba(0, 0, 0 , 0); top: -15px; }
/* The same hack for level 2+ submenus */ .nav ul ul::after { content: ""; position: absolute; top: 0px; left: -12px; width: 14px; height: 100%; background: transparent; background: rgba(0, 0, 0, 0); cursor: pointer; }
/* The little arrow from the top of the level 1 submenu */ .nav>li>ul>li:first-child::after { content: ""; position: absolute; top: -6px; left: 20px; width: 5px; height: 5px; background: #489d48; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -moz-transform: rotate(45deg); -o-transform: rotate(45deg); border-top: 1px solid #397739; border-left: 1px solid #397739; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), inset 1px 0 0 rgba(255, 255, 255, .3); }
.nav>li>ul>li:first-child::before { content: ""; position: absolute; top: 0px; left: 10px; width: 30px; height: 1px; background: #397739; z-index: 999; }
/* The little arrow for the level 2+ submenus */ .nav ul li>ul>li:first-child::after { content: ""; position: absolute; top: 10px; left: -7px; width: 5px; height: 5px; background: #489d48; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); border-top: 1px solid #397739; border-left: 1px solid #397739; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3); }
/* The submenu links */ .nav ul li a { /* Layout */ display: block; position: relative; border-bottom: 1px solid #ddd; border-top: 1px solid #fff; padding: 6px 10px 6px 20px; background: #eee; background: -webkit-linear-gradient(bottom, #ececec, #f3f3f3); background: -moz-linear-gradient(bottom, #eee, #f7f7f7); background: -o-linear-gradient(bottom, #eee, #f7f7f7); background: -ms-linear-gradient(bottom, #eee, #f7f7f7); font-size: 12px; font-family: Arial, Helvetica, sans-serif; text-decoration: none; width: 100px; color: #777; }
.nav ul li a:hover, .nav ul li:hover>a { color: #4d9a4d; background: #fcfcfc; }
.nav ul li:first-child>a { border-top: 1px solid #397739; }
.nav ul li:last-child>a { border-bottom: 1px solid #397739; }
.nav ul li { border-left: 1px solid #397739; border-right: 1px solid #397739; }
.nav>.dropdown>a { padding-right: 25px; }
/* The arrow indicating a level 1 submenu */ .nav>.dropdown>a::after { content: ""; position: absolute; top: 14px; right: 9px; width: 0px; height: 0px; color: #777; border: 4px solid transparent; border-top: 4px solid #777; }
/* Changing the color of the arrow on hover */ .nav>.dropdown>a:hover::after, .nav>.dropdown:hover>a::after { border-top: 4px solid #4d9a4d; }
/* The arrow which indicates a level 2+ submenu */ .nav ul .dropdown>a::after { content: ""; position: absolute; top: 11px; right: 5px; width: 0px; height: 0px; color: #777; border: 3px solid transparent; border-left: 3px solid #777; }
/* Changing the color of the arrow on hover */ .nav ul .dropdown:hover>a::after, .nav ul .dropdown a:hover::after { border-left: 3px solid #4d9a4d; }
http://myvinyldecal.shop/
Connect with me on discord: Marcis Kols
|
|
|
|
Korijs
|
|
|
FORUMA DIKTATORS
Foruma ieraksti: 5047
UWM Reputācija:
|
uWEBMEISTARS ordeņi:
1. līmenis
2. līmenis
3. līmenis
Jaunākie apbalvojumi:
|
@Korijs raksta .. :
smuki, varbūt tik borderu biezumu samazināt apakšējām izvēlnēm, tas ir tā, ka ir pamats, nākamais līmenis vēl tā pat, vēl nākamie ir ar plānāku borderi.
Proti uzvesties, pateikt paldies un paaugstināt reputāciju tiem, kuri ir to nopelnījuši, palīdzēt tiem, kuriem ir nepieciešama palīdzība, papildināt forumu ar lietderīgām tēmām, līdz ar ko Tu šeit būsi respektabls biedrs! Pretēji tam, ja izteikts stulbums, nekaunība un neadekvāta uzvedība spraucas pāri katrai smadzeņu rievai, ja tāda ir - lūgtum, tiksi nahrenizēts! - Biedrs mācās no biedra / UWM
|
|
|
|
|
|
Korijs
|
|
|
FORUMA DIKTATORS
Foruma ieraksti: 5047
UWM Reputācija:
|
uWEBMEISTARS ordeņi:
1. līmenis
2. līmenis
3. līmenis
Jaunākie apbalvojumi:
|
@Korijs raksta .. :
nu vienalga borderis vai paddings, es saucu par vizuālo apmali, ko redzu paraugā, nevis pēc saturiskās nozīmes, tāpēc ieteikums joprojām paliek kāds ir, samazināt biezumu vai ko tādu.
Proti uzvesties, pateikt paldies un paaugstināt reputāciju tiem, kuri ir to nopelnījuši, palīdzēt tiem, kuriem ir nepieciešama palīdzība, papildināt forumu ar lietderīgām tēmām, līdz ar ko Tu šeit būsi respektabls biedrs! Pretēji tam, ja izteikts stulbums, nekaunība un neadekvāta uzvedība spraucas pāri katrai smadzeņu rievai, ja tāda ir - lūgtum, tiksi nahrenizēts! - Biedrs mācās no biedra / UWM
|
|
|
|