-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
75 lines (73 loc) · 1.51 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #f0f0f0;
font-size: 150%;
background: radial-gradient(#22c381,#ffdf00);
height: 100vh;
margin: 0;
}
.container {
text-align: center;
margin-top: 100px;
}
.container h2{
margin: 5% auto;
text-align: center;
}
.container input{
border-radius: 5px;
width: 90%;
margin: 2% 5%;
height: 50%;
}
.form-container {
display: inline-block;
width: 35%;
text-align: left;
padding: 20px;
border: 1px solid #ccc;
border-radius: 10px;
background-color: #f9f9f9;
opacity: 0;
transform: translateX(20px);
transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.form-container.active {
opacity: 1;
transform: translateX(0);
}
.myButton {
margin: 2% 40%;
box-shadow: 3px 4px 0px 0px #899599;
background:linear-gradient(to bottom, #ededed 5%, #bab1ba 100%);
background-color:#ededed;
border-radius:15px;
border:1px solid #d6bcd6;
display:inline-block;
cursor:pointer;
color:#0d5263;
font-family:Arial;
font-size:17px;
padding:7px 25px;
text-decoration:none;
text-shadow:0px 1px 0px #e1e2ed;
}
.myButton:hover {
background:linear-gradient(to bottom, #bab1ba 5%, #ededed 100%);
background-color:#bab1ba;
}
.myButton:active {
position:relative;
top:1px;
}
a{
text-decoration: none;
}
.hidden {
display: none;
}