-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (78 loc) · 1.31 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
h1{
color:rgb(27, 219, 27);
}
.container {
width: 600px;
margin-left: auto;
margin-right: auto;
font-family: "Open Sans";
}
.newsletter {
color: grey;
border: thin solid #cfcfcf;
padding: 10px;
border-radius: 3px;
position: relative;
}
.newsletter button {
background-color: #3cb878;
border: none;
color: white;
display: block;
width: 100%;
height: 30px;
}
.newsletter input#email {
display: block;
width: 100%;
height: 30px;
margin-bottom: 4px;
border-radius: 3px;
border: thin solid #cfcfcf;
box-sizing: border-box;
}
.newsletter h3 {
margin-top: 0;
}
.newsletter input#terms {
margin-top: 20px;
margin-bottom: 20px;
position: relative;
top: 1px;
}
.newsletter #closex {
position: absolute;
top: 0;
right: 5px;
}
#questionmark {
background-color: #3cb878;
width: 100px;
height: 100px;
border-radius: 50%;
color: white;
text-align: center;
font-size: 70px;
position: fixed;
bottom: 20px;
right: 20px;
box-shadow: 0px 0px 7px 3px grey;
}
.card {
background-color: #3cb878;
width: 180px;
text-align: center;
color: white;
padding: 20px 0;
box-shadow: 0px 0px 7px 3px grey;
}
.card h3 {
margin: 0;
margin-top: 10px;
}
#card-holder {
margin-bottom: 30px;
display: flex;
justify-content: space-between;
align-items: center;
}