-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (47 loc) · 949 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
html {
height: 100%;
width: 100%;
}
/* CSS variables */
:root{
--primary-color : #030236;
}
body{
background-color: var(--primary-color);
}
*{
font-family: 'M PLUS Rounded 1c', Avenir Next, Helvetica, sans-serif;
color: #18166b;
}
.container{
width: 80%;
height: 100%;
margin:0px auto;
justify-content: center;
background-color: white;
padding: 1rem 2rem;
text-align: inherit;
}
.title{
text-align: center;
margin-top: 0rem;
padding-top: 0rem;
}
.image{
text-align: center;
margin: auto;
padding-top: 2rem;
padding-bottom: 3rem;
}
.btn{
text-align: center;
width: 100%;
margin-bottom: 1rem;
}
#dogButton{
background-color: #a5bfe9;
font-weight:bold;
color:white;
border-color: yellow;
font-size: 1rem;
}