-
Notifications
You must be signed in to change notification settings - Fork 3
/
home.css
100 lines (100 loc) · 2.13 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
@import url("https://fonts.googleapis.com/css2?family=Sigmar+One&display=swap");
*{
box-sizing: border-box;
}
.page{
background-color: #36096d;
background-image: linear-gradient(315deg, #36096d 0%, #37d5d6 74%);
}
h1 {
text-align: center;
color: black;
font-size: 300%;
font-family: "Lucida Handwriting", cursive;
}
#footer, #front, #choose, #services {
text-align: center;
}
body{
padding: 0.2%;
background-color: black;
}
#footer {
background-color: #000000;
background-image: linear-gradient(147deg,#37d5d6 0%, #000000 74%);
color: white;
}
img{
width: 50%;
}
.main{
font-size: 200%;
color: black;
}
#neonShadow{
height:50px;
width:100px;
border:none;
border-radius:50px;
transition:0.3s;
background-color:rgba(156, 161, 160,0.3);
animation: glow 1s infinite ;
transition:0.5s;
}
span{
display: block;
width: 100%;
height: 100%;
font-family: Arial, Helvetica, sans-serif;
font-weight: 700;
padding-top: 15%;
padding-right: 2.5%;
margin-right: 0px;
font-size: 1.2rem;
transition: 0.3s;
opacity: 0;
}
span:hover{
transition: 0.3s;
opacity: 1;
font-weight: 700;
}
#neonShadow:hover{
transform:translateX(-20px)rotate(30deg);
border-radius:5px;
background-color:#c3bacc;
transition:0.5s;
}
@keyframes glow{
0%{
box-shadow: 5px 5px 20px rgb(93, 52, 168),-5px -5px 20px rgb(93, 52, 168);}
50%{
box-shadow: 5px 5px 20px rgb(81, 224, 210),-5px -5px 20px rgb(81, 224, 210)}
100%{
box-shadow: 5px 5px 20px rgb(93, 52, 168),-5px -5px 20px rgb(93, 52, 168)}
}
.queue{
background-color: black;
}
.container {
position: relative;
width: 50%;
height: auto;
box-sizing: border-box;
border: 70px 70px 70px 70px gray;
padding: 30px;
color: rgb(0, 0, 0);
background-color: #000000;
background-image: linear-gradient(315deg, #36096d 0%, #01b0cfef 74%);
overflow: hidden;
border-radius: 30px;
}
.container1:hover {
font-size: larger;
}
@media all and (max-width:30em) {
a.home-button {
display: block;
margin: 0.4em auto;
}
}