-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
77 lines (69 loc) · 1.28 KB
/
styles.css
File metadata and controls
77 lines (69 loc) · 1.28 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
body {
font-family: 'Press Start 2P', sans-serif;
text-align: center;
background-color: #9bbc0f; /* Game Boy green */
color: #0f380f;
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.container {
width: 100%;
max-width: 400px;
padding: 20px;
background-color: #9bbc0f;
border: 5px solid #0f380f;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
h1 {
color: #0f380f;
font-size: 2em;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 2px;
}
form {
margin: 20px 0;
}
input {
padding: 10px;
width: 100%;
border-radius: 0;
border: 3px solid #0f380f;
background-color: #9bbc0f;
color: #0f380f;
font-size: 16px;
font-family: 'Press Start 2P', sans-serif;
}
button {
padding: 10px 20px;
background-color: #0f380f;
border: 3px solid #0f380f;
color: #9bbc0f;
cursor: pointer;
font-family: 'Press Start 2P', sans-serif;
border-radius: 0;
margin-top: 20px;
width: 100%;
}
button:hover {
background-color: #0f380f;
color: #9bbc0f;
}
body::before {
content: "";
display: block;
height: 20px;
background-color: #0f380f;
margin-bottom: 20px;
}
body::after {
content: "";
display: block;
height: 20px;
background-color: #0f380f;
margin-top: 20px;
}