-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (88 loc) · 1.86 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
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
body {
font-family: 'Arial', sans-serif;
background-color: black;
color: white;
margin: 0;
padding: 0;
}
.f-text {
background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: shimmer 2s infinite;
background-repeat: no-repeat;
background-size: 200% auto;
text-align: center;
cursor: pointer;
}
@keyframes shimmer {
0% {
background-position: -200% center;
}
100% {
background-position: 200% center;
}
}
html {
scroll-behavior: smooth;
}
#numInputs {
padding: 10px;
margin-bottom: 15px;
background-color: white;
border: 1px solid #ced4da;
border-radius: 4px;
font-size: 16px;
transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
#numInputs:focus {
border-color: #80bdff;
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}
#numInputs option {
padding: 10px;
}
#logo {
height: 100px;
width: 100px;
border: none;
outline: none;
border-radius: 50%;
}
#about {
padding: 50px;
text-align: center;
background-color: black;
color: white;
}
input[type="number"] {
padding: 10px;
margin: 5px;
border: 1px solid #ddd;
border-radius: 5px;
transition: all ease 1s;
}
button {
padding: 10px 15px;
margin: 5px;
border: none;
border-radius: 5px;
background-color: #50b3a2;
color: white;
cursor: pointer;
transition: all ease 1s;
}
input[type="number"]:focus {
border-color: #50b3a2;
transform: scale(1.1);
}
button:hover {
background-color: #e8491d;
transform: scale(1.1);
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}