-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
51 lines (45 loc) · 808 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;
}
.popupContainer {
width: 200px;
height: 400px;
display: flex;
flex-direction: column;
align-content: space-around;
justify-content: center;
align-items: center;
}
body {
font-family: sans-serif;
background-color: "white";
border: 5px solid #FC5185;
}
h2 {
color: #364F6B;
text-align: center;
font-size: 24px;
font-weight: bold;
}
h4 {
color: #364F6B;
text-align: center;
font-size: 14px;
margin: 10px;
}
#dogButton {
border: 1px solid #364F6B;
border-radius: 10px;
height: 50px;
width: 100px;
background-color: #3FC1C9;
color: white;
font-weight: bold;
font-size: 18px;
text-align: center;
margin-top: 20px;
}
/* #364F6B Dark Green*/
/* #3FC1C9 Light aqua*/
/* #F5F5F5 Gray*/
/* #FC5185 Weird pink*/