-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (79 loc) · 1.55 KB
/
style.css
File metadata and controls
126 lines (79 loc) · 1.55 KB
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
body{
padding: 0%;
margin: 0%;
/* height: 100vh; */
font-family: 'Bowlby One', cursive;
}
#particles-js{
height: 100vh;
background:url("blue.jpeg");
background-size: cover;
background-position: center;
}
.box1{
margin-top: 13.0%;
margin-left: 12%!important;
position: absolute;
}
#text{
font-size: 60.0px;
font-family: 'Bowlby One', cursive;
font-weight: bold;
text-shadow: 0px 0px 15px black;
color: gold;
letter-spacing: 3px;
animation-name: anim1;
animation-duration: 6s;
animation-iteration-count: infinite;
}
.box2{
margin-top: 6.0%;
margin-left: 18.0%;
position: fixed;
}
.btn1{
padding: 30px 80px;
border-radius: 12px;
border: none;
font-size: 29px;
font-family: 'Bowlby One', cursive;
box-shadow: 0px 0px 10px black;
background: gold;
/* background: linear-gradient(90deg ,#03a9f4,#f441a5,#ffeb3b,#03a9f4); */
}
.btn2{
padding: 30px 61.0px;
border-radius: 12px;
border: none;
font-size: 29px;
font-family: 'Bowlby One', cursive;
background: silver;
box-shadow: 0px 0px 10px black;
}
#text:hover{
}
@keyframes anim1{
0%{
/* color:#69e00d; */
color:orange;
}
25%{
/* color:#30dbbc; */
color: greenyellow;
}
50%{
/* color:#fdff82; */
color:hotpink;
}
75%{
/* color:#547dbf; */
color: aquamarine;
}
100%{
color:#f5b171
}
}
.a1, .a2{
color: black;
text-decoration: none;
}