-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
134 lines (123 loc) · 3.15 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');
html {
background-image: url(./img/background.jpg);
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
min-height: 100vh;
font-family: 'Roboto', sans-serif;
}
.wrapper {
box-sizing: border-box;
border-radius: 2%;
max-width: 600px;
max-height: 700px;
margin: 20px auto;
background-image: linear-gradient(to right, #bfe4fd 0%, #a897e5 51%, #51abe8 100%);
}
.container {
box-sizing: border-box;
padding: 30px 60px;
margin-top: 20px;
}
.header {
height: 50px;
text-align: center;
border-radius: 10px;
color: #fff;
padding-top: 10px;
box-shadow:
inset 0 0 50px #fff,
inset 20px 0 80px #f0f,
inset -20px 0 80px #0ff,
inset 20px 0 300px #f0f,
inset -20px 0 300px #0ff,
0 0 50px #fff,
-10px 0 80px #f0f,
10px 0 80px #0ff;
}
span {
font-size: 30px;
text-align:left;
}
label {
color: black;
font-size: 20px;
}
input::-webkit-inner-spin-button {
-webkit-appearance: none;
display: block;
width: 8px;
opacity: 0.5;
background-image: white;
}
#sum, #persent, #days {
display: block;
box-sizing: border-box;
width: 100%;
height: 50px;
font-size: 25px;
font-weight: 400;
margin: 20px 0px;
border-radius: 10px;
border: 2px solid #eee;
outline: navajowhite;
border:0;
border-bottom:2px solid #eee;
box-shadow:0 0 5px 2px rgba(0,0,0,0.06);
padding-left: 10px;
}
.btn {
display: flex;
}
.result-button {
width: 100px;
height: 50px;
margin: 0 auto;
border-radius: 10px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
cursor: pointer;
background-color: #10a7da;
background-image: linear-gradient(to right, #2b5876 0%, #645695 51%, #2b5876 100%);
transition: 0.5s;
background-size: 200% auto;
color: white;
box-shadow: 0 8px 16px 0 rgba(127, 127, 127, 0.24), 0 10px 50px 0 rgba(127, 127, 127, 0.19);
border: #4e4376;
}
.result-button:hover {
box-shadow: 0 0 15px rgb(255, 255, 255);
}
.result-button:active {
background-color: #ffffff;
box-shadow: 0 5px rgb(192, 192, 192);
transform: translateY(4px);
}
.btn-grad {
background-image: linear-gradient(to right, #003973 0%, #E5E5BE 51%, #003973 100%);
margin: 10px;
padding: 15px 45px;
text-align: center;
text-transform: uppercase;
transition: 0.5s;
background-size: 200% auto;
color: white;
box-shadow: 0 0 20px #eee;
border-radius: 10px;
display: block;
}
.btn-grad:hover {
background-position: right center;
color: #fff;
text-decoration: none;
}
.result-info {
text-align: center;
font-size: 20px;
}