-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
128 lines (110 loc) · 2.04 KB
/
index.css
File metadata and controls
128 lines (110 loc) · 2.04 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
body{
padding:0;
margin: 0;
background-image: url("homebg1.jpg");
background-size:cover;
color: white;
width: 100%;
height: 100%;
}
ul{
list-style-type: none;
width: 100%;
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgb(37, 35, 35);
position: fixed;
top: 0%;
}
li{
float: left;
}
.login{
float: right;
margin-right: 20px;
font-size: large;
font-weight: bold;
}
li a{
display: block;
color: white;
font-size: large;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #111;
}
div .welcome{
position: fixed;
width: 500px;
height: 100px;
left: 35%;
top: 10%;
/* background-color: rgb(138, 120, 120); */
}
h1{
text-shadow: 5px 5px #313c46;
font-size: 70px;
}
.login-box{
width:400px;
position: absolute;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
color:white;
font-weight: bold;
}
.login-box h1{
float:left;
font-size: 40px;
border-bottom: 6px solid #4caf50;
margin-bottom: 50px;
padding: 13px 0;
}
.textbox{
width: 100%;
overflow: hidden;
font-size: 20px;
padding: 8px 0;
margin: 8px 0;
border-bottom: 1px solid #13cc1a;
}
img{
float: left;
width:20px;
height: 20px;
/* color:white; */
background-color:white;
}
.textbox input{
border: none;
outline: none;
background: none;
color:white;
font-size: 18px;
width:80%;
float:left;
margin: 0 10px;
}
.btn{
border: 2px solid #4caf50;
color : white;
font-size: 18px;
cursor: pointer;
margin: 12px 0;
}
button{
background: none;
width: 100%;
border: none;
cursor: pointer;
color : rgb(243, 241, 248);
padding: 10px;
font-size: 18px;
font-weight: bold;
}