-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (79 loc) · 1.24 KB
/
style.css
File metadata and controls
82 lines (79 loc) · 1.24 KB
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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body{
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
background: #17a2b8;
}
.fortmulair{
margin: -50px;
}
.div1{
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
form{
display: flex;
flex-direction: column;
background-color: #fff;
padding: 10px;
border-radius: 6px;
box-shadow: 0 0 10px rgba(0,0,0,2);
}
h4{
text-align: center;
font-size: 20px;
}
hr{
margin: 10px 0;
background-color: #ccc;
border: 0;
height: 1px;
width: 100px;
}
.name field{
display: flex;
width: 100px;
justify-content: space-between;
}
.name-field div{
display: flex;
flex-direction: column;
}
.name-field div{
width: 49%;
}
label{
margin-bottom: 6px;
}
input{
margin-bottom: 5px;
padding: 5px;
outline: 0;
border: 1px solid rgba(0,0,0,0.4);
}
input:focus{
border: 1px solid #17a2b8;
}
inputtype [type"[submit"]{
margin-top: 15px;
background-color: #17a2b8;
color :#fff;
border :1px solid #17a2b8
cursor :pointer
}
p{
text-align: center;
margin: 5px 0;
font-size: 14px;
}
P a{
text-decoration: 0;
color: #17a2b8;
}
P a:hover{
text-decoration: underline;
}