-
Notifications
You must be signed in to change notification settings - Fork 1
/
42main_page.css
73 lines (63 loc) · 1.35 KB
/
42main_page.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
body {
background-image: url(../img/background_login.jpg);
}
h1 {
margin-left: auto;
margin-top: 18%;
text-align: center;
font-weight: 100;
font-size: 4.8em;
color: #f7f7f7;
}
#formStyle {
background-color: #000000;
max-width: 300px;
width: 50vw;
height: 30px;
padding-left:10px;
border-top-style: none;
border-right-style: none;
border-left-style: none;
font-size: 1.2em;
font-weight: 100;
color: #f7f7f7;
}
.formButton {
float: none;
max-width: 100px;
width:10vw;
height: 35px;
background-color:#f7f7f7;
font-size:17px;
font-weight: 400;
text-decoration:none;
border-bottom-color: none;
border-top-style:none;
border-right-style: none;
border-left-style: none;
}
.formButton:hover {
background-color: #00b9ba;
color:#f7f7f7;
}
.formButton:active {
position:relative;
top:3px;
}
/*To remove the outline that appears on clicking the input textbox*/
input:focus {
outline: none;
}
/* To format the placeholder text color */
::-webkit-input-placeholder {
color: #f7f7f7;
}
:-moz-placeholder { /* Firefox 18- */
color: #f7f7f7;
}
::-moz-placeholder { /* Firefox 19+ */
color: #f7f7f7;
}
:-ms-input-placeholder {
color: #f7f7f7;
}