-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
60 lines (50 loc) · 1.11 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
body {
background-image: url("https://wallpapers.com/images/high/pikachu-4k-and-pokemon-cousins-field-trip-03fs1oq9pudixw79.webp");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
font-family: tahoma, -apple-system, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: bold;
text-align: center;
}
#container {
width: 250px;
padding: 30px;
border-radius: 20px;
box-shadow: 0 4px 10px 0 #9E9EA7;
margin: 20vh auto 30vh auto;
background-color: rgb(222, 234, 251, .5)
}
h1 {
margin-top: 10px;
margin-bottom: 10px;
}
h2 {
font-size: 50px;
margin-top: 0;
margin-bottom: 20px;
}
button {
border: none;
padding-top: 10px;
padding-bottom: 10px;
color: white;
font-weight: bold;
width: 200px;
margin-bottom: 5px;
border-radius: 5px;
}
#increment-btn {
background: #213FFF;
}
#save-btn {
background: darkgreen;
}
a {
font-size: 0.5em;
}
@media (max-width: 400px) {
#container {
width: 70vw;
}
}