-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
51 lines (49 loc) · 930 Bytes
/
styles.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
* {
box-sizing: border-box;
}
#container {
display: flex;
flex-wrap: wrap;
flex-direction: column;
place-items: center;
height: 100vh;
background-color: black;
}
h1 {
font-family: "Gill Sans", "Gill Sans MT";
color: rgb(218, 228, 17);
margin-top: 25vh;
margin-bottom: 100px;
font-size: 48px;
}
input {
width: 30vw;
height: 30vh;
border: 2px solid black;
font-size: 16px;
}
button {
margin-top: 120px;
width: 14vw;
height: 40px;
border: rgb(194, 152, 60) 3px solid;
background-color: yellow;
border-radius: 20px;
font-size: larger;
font-weight: 700;
}
button:hover {
color: yellow;
background-color: black;
}
footer {
color: yellowgreen;
background-color: black;
font-family: sans-serif;
text-align: center;
position: fixed;
top: 95%;
right: 8%;
font-size: 18px;
letter-spacing: 0.05em;
}