-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallanStyle.css
68 lines (63 loc) · 1.97 KB
/
challanStyle.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
body{
background-image: url(pen.jpg);
}
#menu{
width: 100%;
height: 100px;
}
#menu h1{
font-family:cursive;
line-height: 80px;
text-align:center;
font-size: 40px;
color: white;
background-color: #009270;
}
form{
background-color: transparent;
position: absolute;
width: 400px;
height: 500px;
border: 3px solid #009270;
left: 35%;
top: 150px;
}
form input[type="text"]{
background-color: transparent;
border: none;
border-bottom: 2px solid #009270;
padding: 0;
margin-left: 20% ;
margin-bottom: 25px;
font-family: sans-serif;
font-size: 18px;
width: 230px;
height: 30px;
}
form input[type="text"]:hover{
border: none;
border-bottom: 2px solid red;
}
form input[type="submit"]{
background-color: #009270;
width: 250px;
height: 30px;
border: none;
margin-left: 20%;
font-size: 16px;
color: white;
font-family: sans-serif;
border-radius: 8px;
}
form input[type="submit"]:hover{
background-color: white;
color: red;
border: 2px solid #009270;
}
form h1{
font-weight: bold;
font-family: sans-serif;
text-align: center;
top 30px;
padding-bottom: 30px;
}