-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
50 lines (46 loc) · 1.01 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
body {
font-family: Ubuntu, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
/* background-color: #222; */
background-image: radial-gradient(circle, darkblue, purple);
color: #ddd;
}
button {
cursor: pointer;
}
.container {
text-align: center;
}
.counter {
font-size: 5em;
margin-bottom: 20px;
}
.clicker {
padding: 15px 30px;
border: none;
border-radius: 20px;
background: linear-gradient(to right, purple, #ff6600);
color: #fff;
font-size: 1.2em;
cursor: pointer;
transition: transform 0.2s ease-in-out;
}
.clicker:hover {
transform: translateY(-5px);
}
.message {
position: fixed;
bottom: 10px;
right: 10px;
background-color: #ff0000;
color: #fff;
padding: 10px;
border-radius: 5px;
display: none;
}