-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm.css
90 lines (76 loc) · 1.29 KB
/
Form.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
*{
box-sizing: border-box;
}
.header img {
float: left;
width: 100px;
height: 60px;
background: #555;
}
.header h1 {
position: relative;
top: 0px;
left: 300px;
font-family: 'Fredericka the Great', cursive;
font-family: 'Monoton', cursive;
color:#b14b0f;
}
body{
margin: 0;
padding: 0;
text-transform: uppercase;
font-weight: bold;
background-color: #E8CEBF;
}
nav{
margin-left:2px;
overflow: hidden;
background:hsl(22, 52%, 72%);
line-height: 4;
border-radius:25px;
}
input[type=text] {
margin-left:6px;
border-color: hsl(22, 52%, 72%);
border-radius:20px;
transition: width 0.4s ease-in-out;
height:40px;
margin-right:4px;
}
input[type=text]:focus {
width: 30%;
}
input[type=button] {
background: #f6c607;
color: #fff;
border: 1px solid #eee;
border-radius: 20px;
text-shadow:none;
width:9%;
}
input[type=button]:hover {
background: #12232E;
color: #fff;
border: 1px solid #eee;
border-radius: 20px;
text-shadow:none;
}
.view{
width: 100%;
margin: 5px 5px;
display: flex;
flex-wrap: wrap;
}
.main{
flex: 25%;
/* padding: 20px; */
}
@media(max-width:768px){
.main{
flex:50%;
}
}
.viewImage{
width: 250px;
height: 250px;
}