-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.css
62 lines (61 loc) · 1.16 KB
/
login.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
/* LOGIN FORM CSS */
#loginform{
position: relative;
padding-top: 30px;
padding-right: 15px;
padding-left: 15px;
padding-bottom: 30px;
margin-top: 10%;
margin-right: 40%;
margin-left: 40%;
border-bottom: 8px solid black;
border-top: 8px solid black;
background-color: rgba(0,0,0,0.7);
text-align: center;
/*border: 2px solid red;
border-radius: 12px;*/
}
#myForm #name,#surname {
font-family: "Roboto", sans-serif;
width: 100%;
margin: 0 0 15px;
padding: 15px;
box-sizing: border-box;
font-size: 14px;
}
#myForm #sub {
font-family: "Roboto", sans-serif;
text-transform: uppercase;
outline: 0;
background: black;
width: 100%;
border: 0;
padding: 15px;
color: white;
font-size: 14px;
cursor: pointer;
}
#myForm #sub:hover,#myForm #sub:active,#myForm #sub:focus {
background: #333;
}
#myForm .message {
margin: 15px 0 0;
color: #b3b3b3;
font-size: 12px;
}
#myForm .message a {
color: white;
text-decoration: none;
}
/* END LOGIN FORM CSS */
#demo{
text-align: center;
font-size: 20px;
color: white;
font-weight: bold;
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}