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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
html,body
{
background-image: url("tex.jpg");
background-size: 100%; /* Ou cover, regarde ce qui te va le mieux */
background-repeat: no-repeat;
margin: 0;
height:100%;
}
#nav
{
margin-left: 20px;
list-style: none;
font-family: 'Quicksand', Helvetica, Verdana, sans-serif;
position: fixed;
margin-top: 200px;
}
#nav li {
margin-bottom: 10px;
}
#nav a {
background: #ededed;
color: #666;
display: block;
font-size: 27px;
padding: 5px 10px;
text-decoration: none;
border-radius: 5px;
}
#nav a:hover {
background: #dedede;
}
#nav .current a {
background: rgb(50,165,200);
color: #ededed;
}
a
{
color: white;
text-decoration: none;
}
a:hover
{
color:black;
}
h1
{
font-family: 'Roboto Slab',Helvetica, sans-serif;
color: rgb(12,53,78);
}
section
{
height: 100%;
background-image: url('blog-bg.png') repeat;
font-family: 'Quicksand',Helvetica,sans-serif;
font-size: 30px;
}
#sec_1
{
height: 100%;
}
section#apropos
{
}
section#competences
{
}
section#portfolio
{
}
section#contact
{
}
p
{
width: 77%;
margin-left: 290px;
padding-top: 50px;
}
.vertical
{
border-left: thick solid rgb(12,53,78);
box-shadow: 1px 1px 16px #555;
}
#rightcol
{
width: 75%;
float: right;
}
.neckslog
{
float: right;
max-width: 200px;
max-height: 200px;
}
hr.style {
border: 0;
width: 40%;
height: 1px;
background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
}
@media only screen and (max-width:1400px) {
/* Style adjustments for tablets landscape 1280 viewports */
}
@media only screen and (max-width:1280px) {
/* Style adjustments for tablets landscape 1024 viewports */
}
@media only screen and (max-width:960px) {
/* Style adjustments for tablets portrait viewports */
}
@media only screen and (max-width:767px) {
/* Style adjustments for smartphones landscapes */
}
@media only screen and (max-width:479px) {
/* Style adjustments for smartphones portraits */
} |
Partager