-
Notifications
You must be signed in to change notification settings - Fork 2
/
loginstyle.css
92 lines (89 loc) · 1.73 KB
/
loginstyle.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
*{
background-color:palegoldenrod;
}*/
h1
{
font-family:'Courier New', Courier, monospace;
text-decoration:underline;
font-style:italic;
font-size:80px;
font-weight:bold;
word-spacing: 20pt;
letter-spacing: 10pt;
text-align:center;
color:black;
border-style:double;
border-color:white;
padding:20px;
border-radius:70px;
box-shadow:5px 10px 20px white;
background-image:linear-gradient(to bottom,rgb(245, 242, 94) 50%, #3C002F);
}
form{
text-align:center;
}
.button
{
width:200px;
height:60px;
line-height:60px;
text-align:center;
font-size:30px;
color:black;
text-shadow: 1px 1px px rgba(0,0,0,0.3);
user-select:none;
border-radius:30px;
box-shadow: 0 5px 10px white;
background-image:linear-gradient(to bottom,rgb(245, 242, 94) 50%, #3C002F);
position:relative;
}
input{
widows: 100%;
padding:12px 20px;
box-sizing:border-box;
margin: 8px 0px;
border-radius:15px;
}
.image
{
border-color:rgb(90, 207, 228);
box-shadow: 5px 10px 15px rgb(255, 255, 255);
border-radius:100px;
border-style:double;
}
body
{
background:url(bulb.jpg) no-repeat fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#menu
{
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
#item
{
float: left;
}
a:link, a:visited
{
display:block;
width: 120px;
font-weight: bold;
color: white;
background-color: black;
text-align: center;
padding: 4px;
text-decoration: none;
text-transform: uppercase;
}
a:hover, a:active
{
color: red;
}