forked from dougojeda/Proyecto-codo-a-codo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
115 lines (112 loc) · 1.98 KB
/
styles.css
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
* {
font-family: 'Dangrek', cursive;
font-family: 'Raleway', sans-serif;
font-size: x-large;
margin: 0;
padding: 0;
}
.container {
box-sizing: border-box;
padding-left: 8%;
padding-right: 8%;
width: 100%;
height: 100vh;
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
url(fondo.jpg);
background-position: center;
background-size: cover;
}
.navbar{
height: 12%;
display: flex;
align-items: center;
}
.logo{
width: 50px;
cursor:pointer;
}
.menu-icon{
cursor: pointer;
width: 30px;
margin-left: 40px;
}
nav{
flex:1 ;
text-align: center;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-style: oblique;
}
nav ul li{
list-style: none;
display:inline-block;
margin-left: 60px;
}
nav ul li a{
text-decoration: none;
color: #fff;
font-size: 20px;
align-items: center;
}
.row{
display: FLEX;
height: 88%;
align-items: center;
}
.col{
flex-basis: 50%;
}
h1{
color:#fff;
font-size: 100px
}
p{
color:#fff;
font-size: 18px;
line-height: 15px;
}
button{
width: 180px;
color:black;
font-size: 12px;
padding: 12px 0;
background: white;
border:0;
border-radius: 20px;
outline: none;
margin-top: 30px;
}
.card{
width: 250px;
height: 300px;
display: inline-block;
border-radius: 10px;
padding: 15px 25px;
box-sizing: border-box;
cursor: pointer;
margin: 10px 15px;
background-size: cover;
transition: transform 1s;
}
.serie1{
background-image: url(lasPolacas.jpg)
}
.serie2{
background-image: url(construyendoFierro.jpeg);
}
.serie3{
background-image: url(billete1001.jpeg);
}
.serie4{
background-image: url(Voyeur.jpeg);
}
.card:hover{
transform: translate(10px);
}
h5{
color: #fff;
text-shadow: 0 0 5px #999;
}
.card p{
text-shadow: 0 0 5px #000;
font-size:12px ;
}