-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (61 loc) · 1.36 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
body {
font-family: Arial, sans-serif;
background-image: url(image2.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover ;
background-attachment: fixed;
}
.container {
width: 300px;
height: 200px;
border-radius: 15px;
margin: 70px auto;
text-align: center;
box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
background-color: transparent;
backdrop-filter: blur(8px);
}
input{
width: 150px;
border: 1px solid transparent;
border-radius: 5px;
}
select{
color: #0a133d;
text-decoration: solid;
border: 1px solid transparent;
}
input, select, button {
margin-bottom: 10px;
margin-top: 30px;
padding: 5px;
}
button {
background-image: linear-gradient(-225deg, #473B7B 0%, #3584A7 51%, #30D2BE 100%);
background-size: cover;
color: #ffffff;
width: 100px;
border: 1px solid transparent;
border-radius: 2px;
}
#result {
margin-top: 10px;
font-weight: bold;
color: #054c6d;
}
@media only screen and (max-width: 768px) {
.container {
width: 300px;
height: auto;
}
input, select, button {
width: 70%;
padding: 5px;
font-size: 14px;
}
button {
width: 60%;
font-size: 14px;
}
}