1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
| body {
background-color: black;
background-attachment: fixed;
}
.Name{
position: absolute;
left: 10%;
top: 9%;
font-family: Caviar Dreams;
font-size: 250%;
color: white;
width: 15%;
}
#logo, #logoon{
margin-left: 44%;
width: 20%;
float: left;
width: 14%;
}
#red,#green{
clear: both;
float: right;
margin-right: 10%;
margin-bottom: 5%;
width: 12%;
}
.page2 {
margin-top: 50%;
margin-left: 80%;
float: top;
}
.portfolio{
position: absolute;
top: 58%;
right: 38.9%;
color: white;
font-family: Caviar Dreams;
font-size: 300%;
text-align: center;
}
.welcome{
position: fixed;
top: 50%;
right: 43%;
color: white;
font-family: Caviar Dreams;
font-size: 300%;
text-align: center;
}
.welcome{
color:transparent;
text-shadow:0 0 150px #333;
-webkit-transition : all 2s ease-in;
-moz-transition: all 2s ease-in;
}
.portfolio{
color:transparent;
text-shadow:0 0 150px #333;
-webkit-transition: all 2s ease-in;
-moz-transition: all 2s ease-in;
}
.welcome:hover,
.portfolio:hover{
color:white
} |