-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
158 lines (128 loc) · 3.6 KB
/
Copy pathstyle.css
File metadata and controls
158 lines (128 loc) · 3.6 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
*{
margin: 0;
padding: 0;
box-sizing: border-box;
/* font-family: openSans;
font-weight-normal */
font-family: Poppins, sans-serif ;
}
body{
/* background-image: linear-gradient(to right top, #051937, #11375f, #185a89, #187fb3, #08a6de); */
background-color: #11375f;
color: aliceblue;
text-align: center
}
.container{
display: inline-block;
justify-content: center;
align-items: center;
margin-top: 18vh;
}
.guide{
margin-bottom: 50px;
font-weight: 1000;
margin-top: -40px;
}
.main-area{
border: solid white 2px;
border-radius: 10px;
padding: 100px;
/* background: rgba(255, 255, 255, .5); */
background: linear-gradient(125deg, rgba(255,255,255, 0.1),rgba(255,255,255,0));
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-radius: 20px;
border: 1px solid rgba(255,255,255,0.18);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2)
}
#weight-guide{
border: 1px solid rgba(255,255,255,0.18);
border-radius: 20px;
color: aliceblue;
background: linear-gradient(125deg, rgba(255,255,255, 0.1),rgba(255,255,255,0));
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
padding: 30px;
margin-top: 20px;
}
#height{
padding: 10px;
border-radius: 10px;
padding-left: 20px;
padding-right: 20px;
background: linear-gradient(125deg, rgba(255,255,255, 0.2),rgba(255,255,255,0));
border: 1px solid rgba(255,255,255,0.20);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
margin-bottom: 12px;
transition: 0.5s;
color:aliceblue
}
#weight{
padding: 10px;
border-radius: 10px;
padding-left: 20px;
padding-right: 20px;
background: linear-gradient(125deg, rgba(255,255,255, 0.2),rgba(255,255,255,0));
border: 1px solid rgba(255,255,255,0.20);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
color:aliceblue;
transition: 0.5s;
}
::placeholder{
color:aliceblue
}
h3{
margin-bottom: 10px;
}
button{
padding: 10px;
margin-top: 22px;
border: 1px solid rgba(255,255,255,0.20);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
border-radius: 20px;
/* background-image: linear-gradient(to right, #314755 0%, #26a0da 51%, #314755 100%); */
background-image: linear-gradient(to right, #1A2980 0%, #26D0CE 51%, #1A2980 100%);
/* padding-left: 40px;
padding-right: 40px; */
padding: 15px 45px;
font-weight: 700;
font-size: 400;
color: aliceblue;
text-align: center;
text-transform: uppercase;
transition: 0.5s;
background-size: 200% auto;
}
button:hover {
background-position: right center; /* change the direction of the change here */
color: #fff;
text-decoration: none;
}
.results{
color: aliceblue;
margin-top: 30px;
font-size:300;
/* border: 1px solid rgba(255,255,255,0.18); */
border-radius: 7px;
/* background: linear-gradient(125deg, rgba(255,255,255, 0.2),rgba(255,255,255,0)); */
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
padding: 10px;
transition : 0.5s
}
.btn-grad {
background-image: linear-gradient(to right, #1A2980 0%, #26D0CE 51%, #1A2980 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; /* change the direction of the change here */
color: #fff;
text-decoration: none;
}