-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsign.css
More file actions
76 lines (68 loc) · 1019 Bytes
/
sign.css
File metadata and controls
76 lines (68 loc) · 1019 Bytes
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
/*Signin/Signup page*/
body{
font-family: Trebuchet MS;
font-size: 1.1em;
}
form{
margin: auto;
padding-top: 5%;
padding-bottom: 5%;
margin-top: 5%;
border: 2px solid black;
border-radius: 3px;
width: 40%;
}
form>*{
display: block;
margin: auto;
text-align: center;
}
form>h1{
margin-bottom: 40px;
}
input:not(#submit){
width: 40%;
height: 1.2em;
text-align: left;
font-size: 1.2em;
outline-width: 0;
}
.p{
margin-bottom: 7px;
}
#submit{
width: 120px;
height: 45px;
background-color: #04043c;
color: white;
border: 0px solid white;
font-size: 1em;
}
#submit:hover{
cursor: pointer;
}
#username{
margin-bottom: 15px;
}
#password{
margin-bottom: 20px;
}
#cookies{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #252525;
color: white;
text-align: center;
padding: 2% 0;
font-family: sans-serif;
}
#cookies>p{
width: 80%;
margin: 0 auto;
}
#cookies>a{
font-size: 0.9em;
color: white;
}