-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup-style.css
More file actions
144 lines (121 loc) · 2.08 KB
/
signup-style.css
File metadata and controls
144 lines (121 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
}
body{
font-family: 'Raleway', sans-serif;
background: #000;
}
.background{
background: url(00.jpg) no-repeat;
background-size: cover;
height: 100vh;
display: flex;
}
ul{
background-color: rgb(26, 32, 85);
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
position: -webkit-sticky; /* Safari */
position: sticky;
top: 0;
}
li {
float: left;
}
li a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 20px;
border-right:2px solid #bbb;
}
li a:hover {
background-color: #ddd;
color: black;
}
.header{
text-shadow: 4px 4px 8px rgb(98, 218, 51);
font-size: 3.2rem;
text-align: center;
font-style: italic;
color: rgb(5, 3, 4);
font-size: 18px;
padding: 50px;
text-align: center;
background: url(header.jfif) ;
}
.text{
margin-top: 45vh;
flex: 1;
}
.box{
margin-top: 33vh;
flex: 1;
}
.text{
margin-left: 10%;
font-weight: 300px;
}
.box{
margin-left: 25%;
}
.text h1{
position: relative;
bottom:90px;
font-size: 80px;
color: #fff;
font-weight: 500;
text-shadow:2px 2px 6px skyblue;
font-style:italic;
}
.text p{
position: relative;
bottom:90px;
text-shadow:2px 2px 6px skyblue;
font-style:italic;
font-size: 25px;
color: #fff;
font-weight: 300;
}
.text p a{
color: #fff;
font-weight: 700;
}
.form{
background: transparent;
color: #fff;
box-sizing: border-box;
display: flex;
flex-direction: column;
width: 350px;
}
input{
margin: 20px 0;
padding: 10px;
background: transparent;
font-size: 24px;
border: none;
outline: none;
color: #fff;
font-family: 'Raleway', sans-serif;
}
.username, .password, .fullname, .email{
border-bottom: 1px solid #fff;
}
.button{
background: transparent;
border: 1px solid #fff;
color: #fff;
font-size: 18px;
}
.button:hover{
background: #fff;
color: #000;
}