-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (74 loc) · 1.52 KB
/
style.css
File metadata and controls
80 lines (74 loc) · 1.52 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');
body {
margin: 0;
padding: 0;
background-color: #1C1C1C;
}
input, input:focus{
outline: none;
border: none;
width: 100%;
margin: 0 auto;
text-align: center;
font-family: Inter;
font-weight: 800;
font-size: 100px;
background-color: transparent;
color: #FFF;
caret-color: transparent;
}
#main {
background-color: #FBF7EE;
display: flex;
flex-direction: column;
width: 550px;
height: 550px;
margin: 10% auto;
padding: 0px;
border-radius: 5px;
}
#main1 {
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
background-size: 400% 400%;
display: flex;
flex-direction: column;
height: 260px;
justify-content: center;
text-align: center;
color: #FFF;
font-family: "Inter";
font-size: 13px;
font-weight: 800;
animation: gradient 15s ease infinite;
border-radius: 5px 5px 0px 0px;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
#main2 {
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
height: 300px;
}
.calc>h3 {
color: #1A1921;
font-family: Inter;
font-weight: 600;
font-size: 16px;
}
.calc>p {
color: #4E4E4E;
font-family: Inter;
font-weight: 400;
font-size: 15px;
}