-
Notifications
You must be signed in to change notification settings - Fork 0
/
style-card.css
77 lines (75 loc) · 1.31 KB
/
style-card.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
.card {
background: #fff;
background-size: contain;
text-align: center;
padding: 1em;
}
.card h1 {
font-size: 20px;
margin: 5px auto 0;
letter-spacing: 1px;
}
.card h2 {
margin: auto;
color: #5c6170;
font-weight: 300;
font-size: 15px;
}
.card red {
margin: auto;
color: #da0000;
font-weight: 300;
font-size: 15px;
}
.card blue {
margin: auto;
color: #0099ff;
font-weight: 300;
font-size: 15px;
}
.card yellow {
margin: auto;
color: #fffb00;
font-weight: 300;
font-size: 15px;
}
.card green {
margin: auto;
color: #00e626;
font-weight: 300;
font-size: 15px;
}
.card orange {
margin: auto;
color: #ff8800;
font-weight: 300;
font-size: 15px;
}
.card .button {
display: block;
text-decoration: none;
background: #0d84ff;
color: #f9f9f9;
padding: 12px;
border: none;
border-radius: 25px;
margin-top: 30px;
font-size: 16px;
font-weight: 700;
min-width: 200px;
transition: 0.2s;
}
.card .button span {
font-size: 20px;
line-height: 1;
vertical-align: top;
}
.card .button:hover {
background: #409eff;
}
.card img {
background-color: #ffffff;
border-radius: 10%;
margin: auto auto 15px;
display: block;
}