-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
118 lines (106 loc) · 1.88 KB
/
main.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
body {
margin: 0px;
padding: 0px;
background-color: turquoise;
}
#box {
height: 200px;
width: 1000px;
background-color: #2D2D2D;
border-radius: 5px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#main {
height: 400px;
width: 430px;
background-color: white;
border-radius: 5px;
position: absolute;
top: 50%;
left: 70%;
transform: translate(-50%, -50%);
z-index: 99;
}
#loginform,
#signupform {
position: absolute;
top: 50%;
left: 70%;
transform: translate(-50%, -50%);
z-index: 999;
}
#signupform {
top: 45%;
left: 75%;
visibility: hidden;
}
#loginform h1,
#signupform h1 {
font-family: arial;
font-size: 25px;
color: turquoise;
}
#loginform input,
#signupform input {
height: 40px;
width: 300px;
border: 0px;
outline: none;
border-bottom: 1px solid black;
margin: 5px;
}
#loginform button,
#signupform button {
height: 35px;
width: 130px;
background-color: turquoise;
font-family: monospace;
font-size: 16px;
color: white;
border: none;
outline: none;
border-radius: 5px;
margin-top: 30px;
margin-left: 175px;
}
#login_btn,
#signup_btn {
height: 35px;
width: 120px;
background-color: transparent;
color: white;
border: 1px solid white;
border-radius: 5px;
outline: none;
position: absolute;
left: 75%;
top: 65%;
transform: translate(-50%, -50%);
transition: all .5s;
}
#signup_btn {
left: 25%;
}
#login_btn:hover,
#signup_btn:hover {
background-color: white;
color: #2d2d2d;
cursor: pointer;
}
#login_msg,
#signup_msg {
font-family: arial;
font-size: 25px;
color: white;
position: absolute;
top: 35%;
left: 75%;
transform: translate(-50%, -50%);
z-index: 1;
}
#signup_msg {
left: 25%;
}