-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinalProjectStyle.css
More file actions
156 lines (135 loc) · 2.8 KB
/
finalProjectStyle.css
File metadata and controls
156 lines (135 loc) · 2.8 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
145
146
147
148
149
150
151
152
153
154
155
156
img{
display: inline-block;
margin: 1em 2.1em;
height: 3em;
}
#formdiv {
background-color: white;
position: absolute;
margin: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 50%;
height: 70%;
text-align: left;
padding: 1em;
box-shadow: 0 0 2em 0 rgba(0,0,0,0.3);
font-family: Chalet;
transition: box-shadow 1s ease;
overflow-y: scroll;
overflow: hidden;
}
h1{
font-family: Chalet;
margin: auto;
text-align: center;
}
form{
position: relative;
max-height: 100%;
overflow: auto;
}
p{
font-size: 1.5em;
}
input[type=text], input[type=password]
{
outline: 0em solid white;
border: 0em solid white;
border-bottom: .05em solid black;
font-size: 2em;
font-family: Chalet;
width: 100%;
margin: .5em 0em 1.5em 0em;
}
input[type=button]
{
width: 47%;
margin: 3% 1%;
background-color: rgba(0,0,0,0);
font-family: Chalet;
font-size: 1em;
padding: .5em .7em;
border: 0em solid white;
font-weight: bold;
}
input[type=submit]
{
width: 50%;
margin: 0;
background-color: rgba(0,0,0,0);
font-family: Chalet;
font-size: 1em;
padding: .5em .7em;
border: 0em solid white;
font-weight: bold;
outline: .1em solid black;
color: black;
background-color: rgba(0,0,0,0);
transition: outline 1s ease, background-color 1s ease, color 1s ease;
margin: 0em 24%;
}
input[type=submit]:hover{
outline: 0em solid black;
color: white;
background-color: black;
transition: outline 1s ease, background-color 1s ease, color 1s ease;
}
#fb{
outline: .1em solid royalblue;
color: royalblue;
background-color: rgba(0,0,0,0);
transition: outline 1s ease, background-color 1s ease, color 1s ease;
}
#fb:hover{
outline: 0em solid royalblue;
background-color: royalblue;
color: white;
transition: outline 1s ease, background-color 1s ease, color 1s ease;
}
#google{
outline: .1em solid indianred;
color: indianred;
background-color: rgba(0,0,0,0);
transition: outline 1s ease, background-color 1s ease, color 1s ease;
}
#google:hover{
outline: 0em solid indianred;
background-color: indianred;
color: white;
transition: outline 1s ease, background-color 1s ease, color 1s ease;
}
#formdiv:hover{
box-shadow: 0 0 4em 0 rgba(0,0,0,0.6);
transition: box-shadow 1s ease;
}
p{
margin: 0;
text-align: left;
}
span{
display: block;
}
input{
margin: 0;
}
body{
background: linear-gradient(to right, #f4c4f3, #fc67fa);
font-family: Chalet;
color: black;
}
#style-13::-webkit-scrollbar-track
{
background-color: lightgrey;
}
#style-13::-webkit-scrollbar
{
width: .8em;
background-color: white;
}
#style-13::-webkit-scrollbar-thumb
{
background-color: dimgrey;
}