-
Notifications
You must be signed in to change notification settings - Fork 0
/
popupstyle.css
53 lines (48 loc) · 946 Bytes
/
popupstyle.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
.flex-container {
display: flex;
flex-direction: column;
align-items: center;
}
body {
font-family: 'Montserrat', sans-serif;
}
img {
width: 245px;
height: 245px;
margin: 10px;
}
h1 {
text-align: center;
font-size: 3.1em;
font-weight: 900;
color: #695f58;
margin: 0px;
}
h2 {
text-align: center;
font-size: 1.5em;
font-weight: 700;
color: #94c72f;
}
button {
display: inline-block;
padding: 0.3em 1.2em;
margin: 0 0.1em 0.1em 0;
border: 0.1em solid rgba(255,255,255,0);
border-radius: 2em;
width: 200px;
height: 35px;
box-sizing: border-box;
text-decoration: none;
font-weight: 700;
background-color: rgb(247, 156, 86);
color: white;
font-family: 'Montserrat', sans-serif;
text-align: center;
transition: all 0.2s;
margin-top: 9px;
margin-bottom: 6px;
}
button:hover {
border-color: rgba(255,255,255,1);
}