-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
90 lines (77 loc) · 1.53 KB
/
Copy pathindex.css
File metadata and controls
90 lines (77 loc) · 1.53 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
.outline {
/* border: 3px solid slategray; */
padding: 5%;
margin: 1%;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
flex-direction: row;
align-items: center;
}
.imagecontainer {
min-width: 0px;
flex: 0 1 30%;
text-align: center;
margin: 3%;
}
.signincontainer {
min-width: 0px;
margin: 3%;
}
img.image {
width: 100%;
border-radius: 5%;
}
input[type=text], input[type=email], input[type=number], input[type=password] {
width: 100%;
padding: 20px 20px;
margin: 10px 0 20px 0;
font-size: large;
display: inline-block;
border: 2px solid grey;
box-sizing: border-box;
}
label {
font-size: x-large;
}
.buttoncontainer {
display: flex;
width: 100%;
justify-content: center;
text-decoration: none;
}
button {
font-size: larger;
background-color: goldenrod;
color: white;
padding: 18px 18px;
margin: 10px 0;
border: 0px;
cursor: pointer;
width: 100%;
}
button:hover {
transform: scale(110%);
transition: all 200ms ease-in-out 0s;
}
hr.divider {
display: flex;
justify-self: center;
justify-content: center;
border-top: 3px solid grey;
width: 95%;
margin-top: 2%;
margin-bottom: 2%;
}
.registerbutton {
background-color: cornflowerblue;
}
.grid {
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr;
row-gap: 10px;
column-gap: 10px;
}
.grid2 { grid-template-columns: auto 16%; }
.grid3 { grid-template-columns: 20% auto; }