-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (85 loc) · 2.06 KB
/
style.css
File metadata and controls
93 lines (85 loc) · 2.06 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
a {
text-decoration: none;
color: gray;
}
header {
margin-top: 30px;
}
#logo {
font-size: 20px;
margin-left: 2%;
font-family: "Odibee Sans", monospace;
letter-spacing: 0.1em;
color: #fff;
margin-right: 25px;
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #9e0079, 0 0 20px #9e0079, 0 0 25px #9e0079, 0 0 30px #9e0079, 0 0 35px #9e0079;
}
#homeButton {
font-size: 20px;
letter-spacing: 0.1em;
font-family: 'Odibee Sans', monospace;
float: right;
color: #fff;
margin-right: 25px;
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #0073e6, 0 0 20px #0073e6, 0 0 25px #0073e6, 0 0 30px #0073e6, 0 0 35px #0073e6;
}
#registerButton {
font-size: 20px;
letter-spacing: 0.1em;
font-family: 'Odibee Sans', monospace;
float: right;
margin-right: 2%;
color: #fff;
margin-right: 25px;
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #0073e6, 0 0 20px #0073e6, 0 0 25px #0073e6, 0 0 30px #0073e6, 0 0 35px #0073e6;
}
#loginButton {
font-size: 20px;
letter-spacing: 0.1em;
float: right;
font-family: 'Odibee Sans', monospace;
margin-right: 2%;
color: #fff;
margin-right: 25px;
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #0073e6, 0 0 20px #0073e6, 0 0 25px #0073e6, 0 0 30px #0073e6, 0 0 35px #0073e6;
}
#banner {
width: 96%;
height: 100%;
margin-left: 2%;
border-radius: 8px;
margin-top: 50px;
box-shadow: 0px 0px 30px 20px #9e0079;
}
#forms {
font-family: Arial, Helvetica, sans-serif;
display: grid;
grid-template-columns: 50% 50%;
grid-template-areas: "login signup";
}
#gameFormContent{
margin-left: 10%;
width: 10%;
display: grid;
grid-area: login;
}
#createGame {
margin-top: 50px;
font-size: 25px;
font-family: 'Odibee Sans', monospace;
border: none;
background: #9e0079;
color: white;
width: 150px;
height: 70px;
}
#joinGame{
font-size: 25px;
font-family: 'Odibee Sans', monospace;
margin-top: 50px;
border: none;
color: white;
background: #0073e6;
width: 150px;
height: 70px;
}