-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinfo-type.css
More file actions
121 lines (104 loc) · 1.77 KB
/
info-type.css
File metadata and controls
121 lines (104 loc) · 1.77 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
body{
background-color: #ede5cc;
}
.flex-container {
display: flex;
flex-wrap: nowrap;
}
.flex-container > div {
width: 50%;
margin: 20px;
text-align: center;
line-height: 40px;
font-size: 30px;
}
.header {
background-color: #ede5cc;
padding: 10px;
text-align: center;
}
/* Style the top navigation bar */
.topnav {
overflow: hidden;
background-color: #1899d6;
margin-bottom: 30%;
margin-left: auto;
margin-right: auto;
}
/* Style the topnav links */
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* Change color on hover */
.topnav a:hover {
font-size: 17px;
color: rgb(0, 32, 108);
transition: color 0.6s, font-size 0.6s;
}
/* Create three unequal columns that floats next to each other */
.column {
float: left;
padding: 40px;
}
/* Left and right column */
.column.side {
float: right;
padding: 10px;
}
body{
background: #ede5cc;
}
.signupdiv{
background: #fff;
border: 1px solid #ddd;
box-shadow: 1px 2px 3px #ccc;
border-radius: 7px;
text-align: center;
width: 35%;
position: absolute;
top: 66%;
left: 33%;
transform: translateY(-50%);
display: block;
margin: auto;
}
#signupform{
padding: 15px;
}
input, select{
margin-bottom: 10px;
height: 38px;
border: 1px solid #ddd;
padding-left: 10px;
}
input{
width: 97%;
}
button, select{
width: 100%;
}
button{
height: 45px;
background: #188c01;
border: none;
border-radius: 5px;
color: #fff;
margin-top: 5px;
type: "button";
}
.label {
font-size: 22px;
}
.submit {
color: white;
background-color: #1899D6;
border: none;
border-radius: 60px;
box-shadow: 0 3px 6px 0 rgb(37 44 97 / 15%), 0 1px 3px 0 rgb(93 100 148 / 20%);
margin-bottom: 5%;
}