-
Notifications
You must be signed in to change notification settings - Fork 1
/
sign-up.css
72 lines (66 loc) · 1.13 KB
/
sign-up.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
*{
margin: 0;
}
body {
background-color:rgb(233, 233, 233);
font-family: Arial, Helvetica, sans-serif;
font-weight: 500;
/* font-size: large; */
/* text-align: center; */
margin: 0;
}
#header {
width: 100%;
height: 3em;
position: fixed;
background-color: rgb(23, 187, 91);
/* box-shadow: rgba(0, 0, 0, 1); */
}
img{
width: 3em;
height:100%;
}
#txt{
position:absolute;
margin-top: 5em;
padding: 2em;
}
li{
list-style: none;
font-size: 2em;
cursor: pointer;
}
li:hover{
color:blue;
}
.back{
font-size: xx-large;
font-weight: 600;
color:white;
padding-top:3em;
padding-left:1em;
background-color: rgb(3, 50, 151);
height: 35vh;
width: 100%;
}
.reg {
text-align: left;
padding-top: 3em;
padding-left: 1em;
padding-right: 1em;
padding-bottom: 2em;
border-radius: 10px;
margin: -2em 3% 2em 3%;
background-color:white;
}
p {
text-transform: uppercase;
font-size: larger;
font-weight: 600;
}
.content {
display: grid;
grid-template-columns:1fr 1fr;
grid-gap: 1em;
grid-column
}