-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe1.css
97 lines (83 loc) · 1.39 KB
/
e1.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
*{
box-sizing: border-box;
}
html{
font-size: 14px;
font-family: 'Courier New', Courier, monospace;
overflow: hidden;
}
body{
height: 100vh;
background-color: rgb(0, 0, 0);
}
#fecha{
width: 80%;
margin: 0 auto;
transform: translate(0%, 70%);
}
p{
color: white;
font-size:4rem;
align-self: center;
}
ul{
display: flex;
flex-direction: row;
margin: 0;
padding:0;
list-style: none;
justify-content: center;
border: 7px solid peachpuff;
transition: border-color 2s;
width: 80%;
margin: 0 auto;
/*box-shadow: 10px 10px 145px white;*/
}
li{
padding: 1.5em;
font-size: 4rem;
font-weight: bolder;
color: white;
display: flex;
align-items: center;
}
#day{
color: white;
width: 70%;
margin: 0 auto;
text-align: center;
font-size: 3rem;
margin-bottom: 1em;
font-weight: 600;
}
@media screen and (max-width: 960px){
ul{
}
li{
font-size: 3rem;
}
#day{
font-size: 3rem;
}
}
@media screen and (max-width: 780px){
#fecha{
transform: translate(0, 20%);
}
ul{
display: flex;
flex-direction: column;
align-items: center;
width: 50%;
}
li{
font-size: 3rem;
padding: 2rem;
}
#day{
font-size: 2rem;
}
p{
display: none;
}
}