-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreg.css
More file actions
38 lines (36 loc) · 723 Bytes
/
reg.css
File metadata and controls
38 lines (36 loc) · 723 Bytes
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: sans-serif;
}
.main{
background-color: lemonchiffon;
text-align: center;
margin: 20% ;
border-radius: 120px;
}
h1{
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin-bottom: 50px;
font-size: 60px;
}
input{
border-radius: 120px;
border: none;
background-color: rgba(255, 255, 255, 0.781);
height: 30px;
margin: 8px;
width: 200px;
text-decoration: wavy;
padding: 20px;
}
.input:hover{
color: rgb(233, 209, 179);
}
::placeholder{
padding: 12%;
font-size: 20px;
}