-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
61 lines (50 loc) · 1.03 KB
/
index.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-image: url("butterflies.jpeg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: bold;
text-align: center;
}
#container-div {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
h1 {
margin-top: 10px;
margin-bottom: 10px;
text-shadow: 0 0 10px purple
}
h2 {
font-size: 50px;
margin-top: 0;
margin-bottom: 20px;
text-shadow: 0 0 10px purple
}
p {
color: black;
text-shadow: 0 0 10px purple
}
button {
border: 2px solid purple;
padding-top: 10px;
padding-bottom: 10px;
color: white;
font-weight: bold;
width: 200px;
margin-bottom: 5px;
border-radius: 15px;
}
#increment-btn {
background: darkred;
}
#save-btn {
background: darkgreen;
}
#reset-btn {
background: teal;
}