-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
111 lines (96 loc) · 1.89 KB
/
home.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
body{
background-color: black;
color: black;
font-family: Arial;
padding: 5px;
}
a {
color: #0000FF;
text-decoration: none;
}
.corpo {
background-color: #ffffff;
max-width: 550px;
padding: 5px;
box-shadow: -10px 10px 0px #0000ff;
display: flex;
flex-flow: row wrap;
min-width: 240px;
margin: 20px auto 10px;
}
.titulo{
background-color: #EEEEEE;
padding: 20px;
font-size: 14px;
text-align: left;
box-shadow: 10px 10px 0px #0000ff;
min-width: 240px;
margin: 0 auto;
max-width: 600px;
z-index: 9999;
}
h1 {
font-weight: bold;
text-transform: uppercase;
margin-bottom: 10px;
color: blue;
line-height: 1.5em;
}
.conteudo{
background-color: #ffffff;
position: relative;
padding: 10px;
display: flex;
flex-flow: row wrap;
}
.aula {
width: 90%;
padding: 5px;
border: black solid;
margin: 5px 0px;
padding: 10px;
}
.descricao {
font-size: 16px;
line-height: 22px;
margin: 10px 0 20px;
}
.menu {
display: flex;
flex-flow: wrap;
justify-content: space-around;
padding: 10px;
}
.botao {
padding: 10px;
height: 20px;
background-color: #EEEEEE;
font-weight: bold;
margin-bottom: 10px;
box-shadow: 5px 5px 0px black;
font-size: 0.9rem;
}
.botao:hover {
padding: 10px;
height: 20px;
background-color: #0000FF;
color: #FFFFFF;
font-weight: bold;
}
.inativo {
color: #0000CC20;
}
.inativo:hover {
background-color: #EEEEEE;
}
.animabg{animation: changeBg 45s infinite;}
@keyframes changeBg{
0%,100% {background-position: 0% 0%;}
30% {background-position: 0% 25%;}
50% {background-position: 0% 50%;}
75% {background-position: 0% 75%;}
90% {background-position: 0% 100%;}
}
#pudding {
font-size: 12px;
}