forked from IzaacCoding36/Light_Cake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (48 loc) · 2.04 KB
/
style.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
html {height: 250%; background: linear-gradient(to left top, #444444, #b7b7b7b7);
font-family: 'Poppins', sans-serif;
background-repeat: no-repeat; cursor: default;}
@keyframes glow { 0% {box-shadow: 0px 0px 15px #56e999; border: solid 2px #56e999;}
50% {box-shadow: 0px 0px 15px cyan; border: solid 2px cyan;}
100% {box-shadow: 0px 0px 15px #56e999; border: solid 2px #56e999;}
}
body {margin: 0px; padding: 0px;
background-image: url(Imagens/background.png);
background-size: 500px;
background-repeat: repeat-x;}
.Tema_Escuro {position: relative; top: -1653px;
left: 10px; color: white;
box-shadow: 0px 0px 5px white;
border: solid 2px white;}
.Titulo {border: solid 2px #56e999;
position: relative;
top: -20px; background: black;
animation-name: glow; animation-duration: 4s; animation-delay: 1.5s; animation-iteration-count: infinite;
color: white;}
#A1 {border: solid 2px #56e999;
position: relative; top: 50px;
background: black;
color: white;
box-shadow: 0px 0px 15px #56e999 ;
animation-name: glow; animation-duration: 4s; animation-delay: 1.5s; animation-iteration-count: infinite;
border-radius: 50%;}
.Inicio {position: relative; top: 50px;}
.Bolo {position: relative; top: 50px;
height: 50%; width: 50%;}
#A2 {border: solid 2px #56e999;
position: relative; top: 100px;
box-shadow: 0px 0px 15px #56e999;
color: white;
background: black;
animation-name: glow; animation-duration: 4s; animation-delay: 1.5s; animation-iteration-count: infinite;
border-radius: 50%;}
.Receita {position: relative; top: 100px;}
#B1,#B2,#B3 {text-decoration: underline; text-shadow: 0px 0px 15px aqua; font-weight: bold;}
.Final {position: relative; top: 150px;}
@media screen and (min-width: 528px){
html {height: 525%;}
.Tema_Escuro {top: -1585px;}
}
@media screen and (min-width: 1000px){
html {height: 300%;}
.Tema_Escuro {top: -1650px; background: black;}
}