Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #container {
- text-align: center;
- clear: both;
- height: 2160px;
- width: 960px;
- border-radius: 5px;
- border-style: solid;
- border-color: black;
- border-width: 2px;
- background-color: #82bede;
- }
- #banner {
- height: 12%;
- width: 100%;
- float: left;
- background-color: #82bede;
- }
- #banner img {
- width: 100%;
- height: 100%;
- }
- #navbar {
- height: 2%;
- width: 100%;
- float: left;
- background-color: #355e70;
- }
- /*menu*/
- #menu2 {
- text-align: center;
- margin: 50px 0 50px 0;
- }
- #menu2 ul {
- margin: 0;
- list-style: none;
- display: inline-block;
- white-space: nowrap;
- }
- .topbutton {
- border: none;
- background-color: #98c0cf;
- margin-left: 7px;
- position: relative;
- top: 50%;
- transform: translateY(-50%);
- float: left;
- width: 100px;
- height: 25px;
- }
- #menu2 li {
- display: inline;
- }
- #menu2 li a {
- display: block;
- margin-top: 6px;
- height: 30px;
- float: left;
- color: #000;
- text-decoration: none;
- font: normal 14px/22px 'latomedium', arial,sans-serif;
- padding: 0 0 0 12px;
- background: url(../img/pro_nine_0a.gif) no-repeat;
- }
- #menu2 li a b {
- height: 100%;
- float: left;
- display: block;
- background: url(../img/pro_nine_0.gif) right top;
- padding: 0 12px 0 0;
- }
- #menu2 li a:hover {
- background: url(../img/pro_nine_1a.gif) no-repeat;
- }
- #menu2 li a:hover b {
- background: url(../img/pro_nine_1.gif) right top;
- }
- /*galeria*/
- body {
- min-height: 100vh;
- display: grid;
- place-content: start center;
- background: linear-gradient(#fff, #aaa, #fff);
- }
- .container ul {
- display: table;
- padding: 10px 0 10px 0;
- list-style: none;
- width: 600px;
- margin: 0 auto;
- }
- .container ul:hover li {
- opacity: 0.8;
- -webkit-filter: blur(5px);
- filter: blur(5px);
- }
- .container ul li {
- cursor: pointer;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
- float: left;
- margin: 1px;
- width: 180px;
- height: 180px;
- opacity: 1;
- transition: all 0.3s linear;
- }
- .container ul li:hover {
- box-shadow: 0 5px 15px gba(0, 0, 0, 0.4);
- opacity: 1;
- transform: scale(1.08);
- -webkit-filter: blur(0);
- filter: blur(0);
- }
- .container img {
- max-width: 180px;
- max-height: 180px;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement