-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
96 lines (81 loc) · 1.49 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
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
html, body {
max-width: 980px;
margin: auto;
padding: 0;
min-height: 100%;
background-image: linear-gradient(to bottom right, #12c2e9, #c471ed, #f64f59);
background-attachment: fixed;
font-family: Arial, sans-serif;
}
h1 {
margin-bottom: 20px;
}
.background {
z-index: -1;
}
.content {
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
position: relative;
z-index: 1;
margin: 20px;
transition: all 0.3s ease-in-out;
}
.form-group {
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
margin-bottom: 20px;
}
.form-group label {
margin-right: 10px;
}
#currency {
text-align: center;
}
#price {
width: 100px;
text-align: center;
}
#results {
margin-top: 20px;
display: none;
}
#calculateButton {
background-color: #44b678;
color: white;
border: none;
padding: 10px;
width: 100%;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
#calculateButton:hover {
background-color: #3ea465;
}
#calculateButton:active {
background-color: #369958;
}
#copyButton {
margin-left: 10px;
border: none;
background: none;
cursor: pointer;
padding: 0;
}
#bubbleContainer {
z-index: 0;
overflow: hidden;
position: fixed;
height: 100%;
width: 100%;
}
#bubbleContainer div {
position: fixed;
z-index: -1;
}