-
Notifications
You must be signed in to change notification settings - Fork 0
/
anime.css
122 lines (108 loc) · 2.01 KB
/
anime.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
116
117
118
119
120
121
122
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #8e78ff;
background: -moz-linear-gradient(to right, #8e78ff 0%, #fc7d7b 100%) fixed;
background: -webkit-linear-gradient(to right, #8e78ff 0%, #fc7d7b 100%) fixed;
background: linear-gradient(to right, #8e78ff 0%, #fc7d7b 100%) fixed;
}
li,
a {
font-weight: 400;
color: #000000;
text-decoration: none;
transition: ease 0.7seg;
font-family: 'Alegreya Sans SC', sans-serif;
}
a:hover {
color: #FFFFFF;
/* cambiar */
}
ul {
font-size: 20px;
width: 185px;
list-style: none;
display: inline-flex;
gap: 33px;
justify-content: space-evenly;
height: auto;
}
.nav-bar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 33px;
height: auto;
margin: 15px;
width: 90%;
}
/* comienzo media query */
@media screen and (max-width: 620px) {
.nav-bar {
display: flex;
flex-direction: column;
align-items: center;
padding: 40px;
height: 200px;
margin: 0 auto;
width: 90%;
}
ul {
width: 100%;
list-style: none;
display: inline-flex;
gap: 33px;
height: auto;
flex-direction: row;
justify-content: space-between;
}
.logo {
cursor: pointer;
width: auto;
height: auto;
}
}
/* fin media query */
.anime {
width: 90%;
height: auto;
display: flex;
flex-direction: column;
margin: 7px auto;
text-align: center;
/* background: #FFFFFF; */
font-family: 'Raleway', sans-serif;
color: #000000;
font-weight: 700;
}
.txt {
padding: 13px;
line-height: 30px;
}
.temp {
display: flex;
align-items: center;
margin: 3px auto;
padding: 13px;
width: 90%;
height: auto;
background: white;
}
/* comienzo temp media query */
@media screen and (max-width: 850px) {
.temp {
display: flex;
margin: 3px auto;
padding: 13px;
width: 100%;
height: auto;
background: white;
flex-direction: column;
align-items: center;
flex-wrap: nowrap;
}
}
/* fin temp media query */