-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignupCSS.html
More file actions
108 lines (105 loc) · 2.08 KB
/
signupCSS.html
File metadata and controls
108 lines (105 loc) · 2.08 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
<!--Styling for navbar-->
<style type="text/css">
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
body {font-family: Arial, Helvetica, sans-serif;}
.error{
color:red;
}
h2{
font-family: times-new-roman;
font-size: 40px;
}
#titl{
float : left;
font-size: 50px;
font-family: georgia;
color:white;
padding: 10px;
}
.topnav{
background-color: black;
height: 80px;
overflow:hidden;
}
.topnav a{
float: right;
display: block;
color : white;
margin: 15px 0px;
text-decoration: none;
font-family: helvatica;
padding : 10px;
font-size : 20px;
border: none;
opacity: 0.9;
}
.topnav a:hover{
background-color: purple;
color : white;
opacity: 1;
}
.active{
backgroun-color: purple;
color: white;
}
.topnav .icon{
display: none;
}
@media screen and (max-width: 600px) {
.topnav a:not(:first-child) {display: none;}
.topnav a.icon {
float: right;
display: block;
}
}
@media screen and (max-width: 600px) {
.topnav.responsive {position: relative;}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
.usercontainer{
background-color: #fff;
width:500px;
border-radius: 10px;
margin-left:7px;
margin-bottom: 5px;
}
.avatar{
vertical-align: middle;
width: 100px;
height: 100px;
border-radius: 10px;
}
.col-md-75{
margin: 5px;
}
.col-md-25{
margin-left: 50px;
margin-top: 30px;
font-weight: bold;
font-style: helvetica;
}
.col-md-50{
margin-left: 20px;
}
a{
text-decoration: none;
color:black;
}
.ask{
font-family:times new roman;
margin-bottom:2px;
}
hr{
width: 90%;
size: 3px;
margin-top: 20px
}
</style>