-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignUp.css
84 lines (84 loc) · 1.58 KB
/
signUp.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
body{
font-size:15px;
line-height:18px;
font-family:"Helvetica Neue",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}
nav{
position:sticky!important;
top:0px;
padding:26px 0px!important;
z-index:2000;
background-color:white;
color:rgb(113, 126, 105);
align-items: center;
border-bottom:1px solid lightgrey;
}
.firstlink{
color:rgb(20, 168,0);
font-size:20px;
margin-left:150px;
}
.firstlink:hover{
color: rgb(20, 168, 0);
}
.bordered{
flex-direction:column;
width:55%;
border:1px solid lightgrey;
border-radius:5px;
padding:40px 0px;
}
.bordered section{
border:1px solid lightgrey;
width:250px;
height:150px;
border-radius:5px;
}
.bordered section:hover{
background-color:rgb(240, 247, 245);
}
.bordered section:focus{
outline:1px solid rgb(0, 30, 0);
border:1px solid rgb(0, 30, 0);
outline-offset:5px;
}
.colflex{
flex-direction: column;
}
.green{
color: rgb(20, 168,0);
text-decoration: none;
}
.green:hover{
color: rgb(20, 168, 0);
text-decoration: underline;
}
i{
color: rgb(20, 168, 0);
font-size:30px!important;
}
input{
accent-color:rgb(20,168,0);
}
.btn{
width:40%;
border-radius:50px;
background-color: rgb(213, 224, 213);
color:grey;
font-weight:600;
}
#link{
text-decoration: none;
color:grey;
}
.bottom{
width:100%;
background-color: rgb(0, 30, 0);
flex-direction:column;
}
.bottom a{
text-decoration:none;
}
.bottom a:hover{
text-decoration:underline;
}