-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
62 lines (52 loc) · 1022 Bytes
/
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
body {
background-color: rgb(231, 174, 153);
background-image: url("./bg.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
color: white;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
padding-top: 15vh;
}
.container {
max-width: 400px;
margin: 0 auto;
}
input, button {
margin-bottom: 10px;
padding: 5px;
width: 100%;
}
button {
margin: 15px;
padding: 15px;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
#result {
margin-top: 20px;
font-size: 20px;
margin-bottom: 24px;
}
h3{
color: darkgoldenrod;
position: fixed;
text-align: center;
bottom: 0;
margin: auto;
width: 100%;
padding-bottom: 20px;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}