-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (77 loc) · 1.52 KB
/
Copy pathstyle.css
File metadata and controls
87 lines (77 loc) · 1.52 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
/* Container */
.container{
width: 720px;
height: 420px;
margin:0 auto;
}
/* Login */
#div_login{
top: 50%;
left: 50%;
border: 1px solid gray;
border-radius: 3px;
width: 470px;
height: 270px;
box-shadow: 0px 2px 2px 0px ;
margin-top: 75px;
margin-right: auto;
margin-left: auto;
}
#div_login h1{
margin-top: 0px;
font-weight: normal;
padding: 10px;
background-color: rgba(14,14,14,1.00);
color: white;
font-family: sans-serif;
}
#div_login div{
clear: both;
margin-top: 10px;
padding: 5px;
}
#div_login input[type=text ]{
border: none;
width: 50%;
padding-top: 10px;
padding-bottom: 10px;
opacity: 0.5;
}
#div_login input[type=text]:focus{
border: none;
width: 60%;
padding-top: 10px;
padding-bottom: 10px;
border-bottom: rgba(0,0,0,1.00) ;
}
#div_login input[type=password]{
border: none;
width: 50%;
padding-top: 10px;
padding-bottom: 10px;
border-bottom: rgba(0,0,0,1.00) ;
}
#div_login input[type=password]:focus{
border: none;
width: 60%;
padding-top: 10px;
padding-bottom: 10px;
border-bottom: rgba(0,0,0,1.00) ;
}
#div_login input[type=submit]{
padding: 7px;
width: 100px;
background-color: rgba(5,5,5,1.00);
border: 0px;
color: white;
opacity: 100%;
}
/* media */
@media screen and (max-width:720px){
.container{
width: 100%;
}
#div_login{
width: 99%;
}
}