-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
88 lines (77 loc) · 1.44 KB
/
main.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
body {
margin: 0;
padding: 0;
}
div {
box-sizing: border-box;
margin: 0;
padding: 0;
overflow: hidden
}
input {
border-radius: 10px;
padding: 5px;
}
#mainFrame {
width: 350px;
margin: auto;
text-align: left;
border-radius: 25px;
font-size: 20px;
margin-top: 20px;
}
#mainFrameHeader {
background-color: black;
color: white;
text-align: center;
padding: 2px;
}
#mainFrameContent {
background-color: white;
padding: 10px;
padding-bottom: 50px;
}
#calculateButtonDiv {
display: flex;
justify-content: center;
align-items: center;
}
#calculateButton {
background-color: darkred;
color: white;
border: none;
padding: 10px;
border-radius: 10px;
font-weight: bold;
margin: 20px;
display: inline-block;
}
#calculateButton:hover {
cursor: pointer;
}
#opinion {
border-radius: 10px;
padding: 5px;
}
#gradient {
z-index: -1;
position: fixed;
top: 0;
bottom: 0;
width: 100vw;
height: 100vh;
background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
background-size: 400% 400%;
animation: Gradient 15s ease infinite;
}
@keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}