-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (74 loc) · 1.24 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
.container {
width: 600px;
margin-left:auto;
margin-right:auto;
font-family: 'Open Sans';
}
.newsletter {
color: grey;
border: solid thin #cfcfcf;
padding: 10px;
border-radius:3px;
position:relative;
}
.newsletter #email {
display: block;
width:100%;
height: 30px;
margin-bottom: 4px;
border-radius:3px;
border: solid thin #cfcfcf;
box-sizing: border-box;
}
.newsletter button {
background-color: #3cb878;
border: none;
color: white;
display: block;
width:100%;
height: 30px;
}
.newsletter h3 {
margin-top:0;
}
.newsletter input#terms {
margin:20px 0;
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: 0 0 5px 3px grey;
}
#card-holder {
margin-bottom:30px;
display:flex;
justify-content: space-between;
align-items:center; /* vertical alignment*/
}
.card {
background-color: #3cb878;
width:180px;
text-align:center;
color:white;
padding:20px 0;
box-shadow: 0 0 5px 3px grey; /* horizontal-move, vertical-move, blurryness, blur-intensity*/
}
.card h3 {
margin:0;
margin-top:20px;
}