-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
145 lines (121 loc) · 2.09 KB
/
index.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
135
136
137
138
139
140
141
142
143
144
145
* {
margin: 0;
padding: 0;
}
body {
overflow-x: hidden;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 50px 50px 200px;
}
.input {
margin-bottom: 30px;
height: 150px;
}
input {
width: 100%;
background-color: transparent;
border: 5px solid transparent;
transition: all 1s;
outline: none;
color: #d09566;
opacity: 0.8;
}
input:hover {
border: 5px solid #8CC7B5;
opacity: 1;
}
input::placeholder {
color: #d09566;
font-size: 26px;
transition: all 1s;
opacity: 1;
}
input:hover::placeholder {
font-size: 14px;
padding-left: 20px;
opacity: 0.5;
}
#button {
position: relative;
width: 100%;
background-color: transparent;
font-size: 30px;
border: 5px solid transparent;
transition: all 1s;
color: #F4606C;
margin-top: 100px;
}
#button:hover {
background-color: #fff;
border: 10px solid #E6CEAC;
transform: scale(0.9);
}
.footer {
display: grid;
grid-template-rows: 1fr 1fr;
border: 5px solid transparent;
transition: all 1s;
}
.footer:hover {
border: 5px solid #BEE7E9;
transform: scale(0.99);
}
.footer>p {
transition: all 1s;
height: 50px;
font-size: 20px;
color: #19CAAD
}
.right {
right: -400px;
top: 20%;
cursor: col-resize;
margin-bottom: 50px;
color: #19CAAD;
}
ul {
list-style: none;
}
p {
font-size: 20px;
font-weight: 200;
}
ul>li {
margin-bottom: 20px;
font-weight: 600;
}
@media (max-width: 900px) {
body {
height: 100vh;
display: grid;
grid-template-rows: 1fr 2fr 1.5fr;
}
.right {
top: 10px;
}
.input {
max-height: 30px;
font-size: 18px;
}
.input::placeholder {
font-size: 16px;
}
#button {
width: 100%;
color: #F4606C;
}
.right {
float: none;
width: 100%;
position: relative;
left: 0;
}
.footer {
display: grid;
grid-template-rows: 1fr 1fr;
}
.footer>#youhas {
margin-top: 20px;
}
}