-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
106 lines (92 loc) · 1.88 KB
/
index.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
105
106
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
* {
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
background-image: url('fart-counter.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
margin: 0;
padding: 0;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
gap: 1rem;
padding: 1rem;
}
h1 {
font-size: 2.5rem;
font-weight: 700;
margin: 0;
}
.counter {
font-size: 3rem;
font-weight: 300;
margin: 0;
}
.button {
font-size: 1.2rem;
font-weight: 400;
padding: 10px 20px;
border: none;
cursor: pointer;
outline: none;
position: relative;
overflow: hidden;
}
.button:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(120deg, transparent, #734106, #91530b, transparent);
transform: translateY(-100%);
transition: 0.5s;
}
.button:hover:before {
transform: translateY(0);
}
@keyframes borderAnimation {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(100%);
}
}
.button:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 3px solid #734106;
box-sizing: border-box;
transform: translateX(-100%);
animation: borderAnimation 1s infinite linear;
}
p {
font-size: 1.2rem;
font-weight: 400;
}
@media screen and (max-width: 768px) {
h1 {
font-size: 2rem;
}
.counter {
font-size: 2.5rem;
}
.button {
font-size: 1rem;
padding: 8px 16px;
}
}