-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (62 loc) · 1.49 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
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500&family=Roboto:wght@300&display=swap');
body {
display: flex;
margin: 40px;
flex-direction: column;
align-items: center;
}
.start {
background-color: #AB46D2;
border: none;
color: white;
padding: 16px 48px;
font-size: 16px;
font-family: 'Roboto', sans-serif;
}
.stop {
border: none;
background-color: #AB46D2;
color: white;
padding: 16px 48px;
font-size: 16px;
font-family: 'Roboto', sans-serif;
}
button:hover {
background-color: #8a0138;
cursor: pointer;
}
h1 {
font-size: 50px;
color: white;
font-family: 'Roboto', sans-serif;
}
h2 {
font-size: 50px;
color: white;
font-family: 'Roboto', sans-serif;
}
input {
padding: 16px 48px;
font-family: 'Roboto', sans-serif;
}
.gradient {
display: flex
align-items: center;
justify-content: center;
height: 100vh;
width: 100vw;
background: linear-Gradient(45deg, #FF7700, #83BD75, #4E944F);
background-size: 300% 300%;
animation: colors 15s ease infinite;
}
@keyframes colors {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}