-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate.css
More file actions
128 lines (116 loc) · 2.09 KB
/
Copy pathcreate.css
File metadata and controls
128 lines (116 loc) · 2.09 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
/* Style the header */
.header {
overflow: hidden;
background-color: white;
padding: 1px 1px;
}
.header a {
float: left;
color: black;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
}
.header a:hover {
background-color: white;
color: black;
}
.header a.active {
background-color: dodgerblue;
color: white;
}
.header-right {
float: right;
}
@media screen and (max-width: 500px) {
.header a {
float: none;
display: block;
text-align: left;
}
}
h1 {
position: relative;
text-align: center;
}
.header a:hover {
background-color: #ddd;
color: black;
}
/* Style the content */
section {
width: 360x;
padding: 10% 0 0;
margin: auto;
}
form{
position: relative;
z-index: 1;
opacity: 0.8;
background-color: cadetblue;
max-width: 400px;
margin: 0 auto 100px;
padding: 45px;
text-align: center;
}
.section h4{
width: 340px;
text-align: left;
background: transparent;
font-family: 'Play',sans-serif;
font-size: 16px;
font-weight: 200px;
text-decoration-color: black;
padding: 10px 0;
transition: border 0.5s;
outline: none;
color: black;
}
input{
width: 340px;
text-align: left;
background: transparent;
border: none;
border-bottom: 1px solid #fff;
font-family: 'Play',sans-serif;
font-size: 16px;
font-weight: 200px;
padding: 10px 0;
transition: border 0.5s;
outline: none;
color: black;
}
input[type=button]{
text-align: center;
border: none;
width:190px;
background: white;
color: black;
font-size: 16px;
line-height: 25px;
padding: 10px 0;
border-radius: 10px;
cursor: pointer;
}
.footer
{
position: fixed
left: 0;
bottom: 0;
width: 100%;
background-color:rgb(255,69,0,0.85);
color: white;
text-align: center;
padding: adding:10px;
font-size:10px;
}