-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
84 lines (83 loc) · 1.51 KB
/
index.css
File metadata and controls
84 lines (83 loc) · 1.51 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
83
84
body{
background-image: url(https://ideakart.com/assets/youridea-23d18c0fab7feb4d66e4c1dbc419428c71b2014ff742fc52b4006f6b65af6b67.jpg);
background-size: cover;
text-align: center;
font-size: 14px;
}
p{
margin-top: 10%;
}
#label_name{
width: 75%;
margin: auto;
display: flex;
justify-content: space-around;
font-style:bold;
margin-top: 2%;
}
#name{
height:40px;
width: 75%;
margin: auto;
display: flex;
justify-content: space-around;
padding: 10px;
}
#name>input{
width:45%;
height:20px;
font-size: 11px;
padding: 5px 10px;
border: 0.1px solid;
border-color: grey;
border-radius:3px;
}
#label_cont{
width: 75%;
margin: auto;
display: flex;
justify-content: space-around;
}
#cont{
height:40px;
width: 75%;
margin: auto;
display: flex;
justify-content: space-around;
padding: 10px;
}
#cont>input{
width:45%;
height:20px;
font-size: 12px;
padding: 5px 10px;
border: 0.1px solid;
border-color: grey;
border-radius:3px;
}
#msg{
width: 80%;
margin: auto;
}
#message{
padding-left: 13px;
font-size: 12px;
border: 0.1px solid;
border-color: grey;
margin-top: 5px;
padding-top: 10px;
border-radius: 3px;
}
button{
padding: 8px 10px;
background-color:#5cb85c;
color: white;
border:1px solid #5cb85c;
font-size: 12px;
margin-top: 5px;
cursor: pointer;
border-radius: 5px;
}
button:hover{
background-color:#44ac44;
}