-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (74 loc) · 1.61 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
body, html {
font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 120%;
background: #00d2ff;
background: linear-gradient(to right, #3a7bd5, #00d2ff);
}
a {
color: #1370b7;
}
a:hover {
color: #d16a17;
}
.should-i-hodl-container {
margin: 100px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.should-i-hodl__header {
font-size: 5.5em;
line-height: 115%;
color: white;
font-weight: bold;
margin-top: 20px;
margin-bottom: 60px;
}
.should-i-hodl-content {
background: linear-gradient(to right, #3a7bd5, #00d2ff);
color: white;
padding: 20px;
}
.should-i-hodl-content u {
background: white;
color: #3a7bd5;
padding: 5px;
text-decoration: none;
}
.should-i-hodl-content__current,
.should-i-hodl-content__yesterday {
padding: 5px;
margin-bottom: 10px;
line-height: 1.5em;
}
.should-i-hodl-content__holding-status {
font-size: 3em;
line-height: 115%;
color: white;
font-weight: bold;
margin-top: 60px;
}
.should-i-hodl-content__about {
margin-top: 120px;
padding: 10px;
background-color: #efa530;
font-size: 12px;
color: #fff;
text-align: center;
}
@media screen and (max-width: 992px) {
.should-i-hodl__header {
font-size: 3em;
}
.should-i-hodl-container {
margin: 20px;
}
.should-i-hodl-content {
background: linear-gradient(to left, #3a7bd5, #00d2ff);
}
.should-i-hodl-content__about {
margin-top: 60px;
}
}