-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenge 3.css
94 lines (78 loc) · 1.5 KB
/
challenge 3.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
h2{
text-align: start;
font-style: normal;
font-size: 20px;
font-family: monospace;
}
h3{
text-align: right;
font-style: normal;
font-family: Calibri;
font-size: 20px;
}
hr{
border-color: lightskyblue;
}
body{
background-color:lightgrey;
}
p{
text-align: center;
text-decoration-style: dashed;
font-style: oblique;
font-family: Cochin;
font-size: 60px;
background-color: darksalmon;
padding: 20px;
}
input[type=search]{
width: 60%;
align-content: center;
border: none;
border-radius: 25px;
border-color: beige;
background-color : lightblue;
padding: 20px;
margin-left: 200px;
margin-right: 30px;
margin-top: 20px;
margin-bottom: 50px;
background-image : url('searchicon.png') ;
background-position : 60px 10px;
}
input[type=search]:hover{
border: none;
border-radius: 25px;
background-color:lightskyblue;
}
input[type=search]:focus {
border: none;
border-radius: 25px;
background-color: lightskyblue;
}
input[type=submit]{
background-color: beige;
color:black;
padding: 12px;
cursor: pointer;
}
input[type=submit]:hover{
color: aquamarine;
cursor: pointer;
}
input[type=button]{
background-color: linen;
border: none;
color: black;
padding: 10px;
margin-left: 70px;
margin-top: 10px;
margin-right: 50px;
margin-bottom: 40px;
text-align: center;
cursor: pointer;
}
input[type=button]:hover{
color: aquamarine;
cursor: pointer;
}