-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (100 loc) · 2.03 KB
/
style.css
File metadata and controls
114 lines (100 loc) · 2.03 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
113
114
/* @import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Koulen&family=Macondo&display=swap'); */
body {
padding: 0px;
margin: 20px;
/* font-family: 'Dancing Script', cursive;
font-family: 'Koulen', cursive;
font-family: 'Macondo', cursive; */
background: url(Math.png) repeat fixed;
background-size: contain;
}
h1{
color: rgb(255, 255, 255);
background-color: red;
animation: id1 2s linear 0s infinite alternate-reverse;
font-size: 120px;
}
h3{
font-size: 100px;
}
@keyframes id1 {
from{
color: white;
opacity: 1;
}
to{
color: rgb(211, 206, 206);
opacity: 0.5;
}
}
.container {
margin-left: 10vw;
margin-right: 10vw;
padding: 30px 10px;;
background-color: rgb(186, 199, 198);
color: black;
border-radius: 50px;
animation: Pritham 3s linear 0s 1 normal;
}
.container:hover{
background-color: rgb(185, 186, 160);
}
@keyframes Pritham {
0%{
opacity: 0;
}
50%
{
opacity: 0.7;
}
100%{
opacity: 1;
}
}
input:hover{
box-shadow: 1px 5px 5px 2px;
background-color: rgb(238, 223, 223);
}
.to-center-label {
color: black;
text-align: center;
font-weight: bold;
font-size: 80px;
height: 100px;
margin-bottom: 50px;
}
.to-center-input {
/* margin-left: 16vw; */
width: 80%;
margin-left: 10%;
margin-right: 10%;
margin-top: 40px;
height: 50px;
text-align: center;
font-size: 80px;
height: 100px;
}
button {
padding: 15px;
width: 60%;
margin-left: 20%;
margin-right: 20%;
background-color: #7df063;
border-radius: 20px;
font-size: 100px;
}
button:hover{
background-color: rgb(3, 4, 17);
color: #7df063;
border-color: white;
box-shadow: 3px 2px 2px 7px;
}
footer{
background-color:aqua;
text-align: center;
color: black;
border-radius: 10px;
font-weight: bold;
font-size: 60px;
animation: Pritham 3s linear 0s infinite alternate-reverse;
}