-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
131 lines (116 loc) · 2.62 KB
/
style.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
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
h1 {
color: white;
margin: auto;
font-size: 72px;
font-family: "Times New Roman", Times, serif;
font-weight: 1000;
font-style: normal;
top: 50vh;
/*left: 675px; */
}
body {
background-image: url("https://khichri.github.io/high-tides/media/images/login_page.png");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0, 0, 0); /* Fallback color */
background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
border-radius: 0%;
}
/* Modal Content */
.modal-content {
background-color: #aac9f7;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 100%;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
max-width: 350px;
}
button {
cursor: pointer;
border: 0;
border-radius: 4px;
font-weight: 600;
margin: auto;
width: 200px;
padding: 10px 0;
box-shadow: 0 0 20px rgba(104, 85, 224, 0.2);
transition: 0.4s;
position: relative;
top: 80vh;
/*left: 40vw; */
}
.signup {
color: white;
background-color: rgba(104, 85, 224, 1);
}
.login {
color: rgb(104, 85, 224);
background-color: rgba(255, 255, 255, 1);
border: 1px solid rgba(104, 85, 224, 1);
}
button:hover {
color: white;
box-shadow: 0 0 20px rgba(104, 85, 224, 0.6);
background-color: rgba(104, 85, 224, 1);
}
/* The Close Button */
.close1 {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close1:hover,
.close1:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.close2 {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close2:hover,
.close2:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
input[type="text"],
input[type="email"],
input[type="password"] {
width: 88%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}
input[type="submit"] {
width: 92%;
padding: 10px;
border: none;
border-radius: 4px;
background-color: rgba(104, 85, 224, 1);
color: #fff;
font-size: 16px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: white;
color: rgba(104, 85, 224, 1);
}