-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·117 lines (110 loc) · 1.63 KB
/
style.css
File metadata and controls
executable file
·117 lines (110 loc) · 1.63 KB
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
/*0001*/
body {
background-image: url("images/frontpage.jpeg");
background-size: cover;
background-repeat: no-repeat;
margin-left: 0;
font-family: 'Ultra', sans-serif;
}
/*0001*/
h2,h3 {
text-align: center;
font-size: 300%;
text-shadow: 2px 2px white;
}
/*0001*/
h3{
font-size: 100%;
}
/*0001*/
ul {
align-content: center;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
margin-top: 5%;
margin-left: 1%;
margin-right: 5%;
}
/*0001*/
li {
width: 19%;
display: inline-block;
padding-left: 5%;
}
/*0002*/
li div {
display: block;
}
/*0010*/
.card {
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
border-radius: 5px;
}
/*0010*/
.card:hover .container {
box-shadow: 0 28px 46px 0 rgba(0,0,0,0.5);
background-color: white;
}
/*0001*/
img {
width: 100%;
border-radius: 1% 1% 0 0;
}
/*0001*/
a {
color:black;
}
/*0011*/
a:link
{
text-decoration:none;
}
/*0010*/
.container {
background-color: rgba(255,255,255,0.5);
padding: 1% 1%;
}
/*0001*/
h4{
text-align: center;
color: black;
}
/*0001*/
footer {
padding-top: 1%;
padding-bottom: 0.1%;
position:fixed;
left:0px;
bottom:0px;
background-color: rgba(255,255,255,0.6);
font-size: 80%;
width:100%;
}
/*0003*/
footer ul li {
width: 30%
}
/*0002*/
footer div{
display: inline-block;
}
/*0100*/
#infotrab{
float:right;
padding-right: 1%;
}
/*0100*/
#infopers{
padding-left: 1%;
}
/*0100*/
#etiquetas{
margin-left: 25%;
}
/*0100*/
#copyright{
text-align: center;
}