-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (75 loc) · 1.62 KB
/
style.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
/* basic css formatting, not too sure about what we'd like the game to look like yet*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600;800&display=swap');
h1 {
font-family: 'Nunito', sans-serif;
font-size: 60px;
margin: 10;
display: flex;
justify-content: space-between;
}
h2, body {
font-family: Nunito;
margin-left: auto;
margin-right: auto;
font-size: 30px;
padding: 5px;
max-width: 600px;
}
h1{
font-family: Nunito;
font-size: 80px;
margin: 0.5;
text-align: center;
}
h4{
font-family: Nunito;
font-size: 80px;
margin: 5;
justify-content: space-between;
}
.button, #button {
background-color: #bbb;
padding: 10px 22px;
background: rgb(152, 184, 239);
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 6px;
color: #fff;
font-family: Nunito;
font-size: 18px;
font-weight: 400;
cursor: pointer;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
text-decoration: none;
border: none;
}
#button:hover , .button:hover {
border: none;
box-shadow: 0px 0px 1px #777;
}
#home {
background-color: #bbb;
padding: 10px 22px;
background: rgb(152, 184, 239);
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 6px;
color: #fff;
font-family: Nunito;
font-size: 18px;
font-weight: 400;
cursor: pointer;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
text-decoration: none;
border: none;
}
#home:hover {
border: none;
box-shadow: 0px 0px 1px #777;
}
input {
width: 80%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
}