-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (99 loc) · 2.02 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
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');
*{
margin: 0;
padding: 0;
outline:0;
scroll-behavior: smooth;
font-family: 'Quicksand';
}
body{
display: grid;
place-content: center;
height: 100vh;
background-color: #f3f3f3;
transition: .5s ease-in-out;
}
body > main{
border-radius: 30px;
width: 25vw;
text-align: center;
background-color: #ffffff;
box-shadow:0px 1rem 1rem #c2c2c2;
padding: 0 2.5vw;
transition: .5s ease-in-out;
}
body > main > div#logo{
text-align: center;
transition: .5s ease-in-out;
}
body > main > div#logo > img#logo{
max-width: 100px;
padding: 5vh 0 3vh 0;
transition: .5s ease-in-out;
}
input{
border: none;
border-radius: 30px;
background: #eeeeee;
width: 15vw;
padding: 2vh 1.5vw;
box-shadow: inset 3px 2px 0px lightgray;
outline: none;
transition: .5s ease-in-out;
}
button{
background: linear-gradient(to right,#00A3FF,#01D1FF);
border: none;
border-radius: 30px;
width: 20vw;
padding: 3vh 5vw;
color: white;
box-shadow:0px .5rem 1rem #c9c9c9;
transition: .5s ease-in-out;
}
button:hover{
background:linear-gradient(to right,lime,lightgreen);
color: black;
}
body > main > div#text{
padding-bottom: 15px;
transition: .5s ease-in-out;
}
body > main > div.inputs{
padding: 5px;
transition: .5s ease-in-out;
}
body > main > div#button{
padding: 2.5vh 0 5vh 0;
transition: .5s ease-in-out;
}
@media only screen and (max-width: 600px){
body > main{
border-radius: 20px;
text-align: center;
background-color: #ffffff;
box-shadow:0px 1rem 1rem #c2c2c2;
padding: 0 2.5vw;
width: 60vw;
}
body > main > div#logo{
text-align: center;
}
body > main >div#logo > img#logo{
max-width: 150px;
}
input{
width: 35vw;
padding: 2vh 3vw;
}
button{
width: 40vw;
padding: 3vh 5vw;
}
body > main > div#text{
padding-bottom: 5px;
}
body > main >div#button{
padding: 1.5vh 0 5vh 0;
}
}