-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
71 lines (66 loc) · 1.29 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
*{
margin: auto;
}
.container{
width: 80%;
margin:auto;
box-sizing: border-box;
text-align: center;
padding: 10px;
}
input,textarea{
width:80%;
padding: 9px;
margin: 5px;
border-radius: 10px;
}
#desc{
width:80%;
border-radius: 10px;
}
#submit{
width: 100px;
height: 50px;
background-color:rgba(240, 245, 240, 0.692);
color: rgb(3, 109, 151);
border-radius: 10px;
font-weight:bold;
font-size:20px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
#reset{
width: 100px;
height: 50px;
background-color:rgba(255, 255, 255, 0.685);
color: rgb(2, 199, 67);
border-radius: 10px;
font-weight:bolder;
font-size:20px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
#submit:hover{
background-color: transparent;
color:black;
}
#reset:hover{
background-color: transparent;
color:black;
}
.bg{
position: absolute;
width: 100%;
z-index: -1;
opacity: 80%;
}
#msg{
color: rgb(46, 216, 46);
}
#heading{
color:rgb(233, 126, 233);
font-size:50px;
}
#submsg{
color:rgb(82, 245, 82);
font-size: 30px;
font-style: bolder;
}