-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
126 lines (108 loc) · 2.25 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
body {
background: linear-gradient(135deg, #551A8B, #8235A7, #B55BC4);
color: white;
text-align: center;
font-family: "Work Sans", sans-serif;
}
a,
a:visited {
text-decoration: none;
color: white;
}
a:hover {
text-decoration: underline;
}
footer a {
text-decoration: underline;
}
footer a:hover {
text-decoration: none;
}
ul.download {
width: 75%;
margin: 0 auto;
padding: 0;
}
ul.download>li {
display: inline-block;
list-style-type: none;
margin: 0 0.5em 1.5em 0.5em;
padding: 0;
}
pre {
width: 30vw;
border-radius: 5px;
}
/* Target all iPhones & iPads in both portrait and landscape orientations */
@media (min-width: 768px) and (max-width: 1024px),
(max-width: 480px),
(min-width: 481px) and (max-width: 812px),
(max-width: 768px) {
ul.download>li {
margin-left: 0;
margin-right: 0;
}
pre {
width: 65vw;
}
}
.copy-btn {
font-size: xx-large;
border: 1px solid gray;
background-color: white;
border-radius: 5px;
cursor: pointer;
padding: 0.25em 1em;
}
footer ul {
padding: 0;
margin: 1em auto;
}
footer ul li {
display: inline-block;
list-style-type: none;
margin: 0 0.5em;
}
.features-list {
width: 75%;
list-style: none;
/* Removes default list styling */
padding: 0;
margin: 0 auto;
font-family: "Work Sans", sans-serif;
font-size: x-large;
}
.features-list li {
margin: 1em 0;
/* Adds space between each item */
}
.checkmark {
color: #4CAF50;
/* Green checkmark */
font-size: 18px;
margin-right: 10px;
/* Space between checkmark and text */
}
.features-list strong {
color: lightgray;
/* Strong text color */
font-weight: bold;
}
.large-btn {
display: inline-block;
font-size: medium;
background: linear-gradient(135deg, #551A8B, #8235A7);
color: white;
border: none;
padding: 0.5em 1em;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
margin: auto auto 0.5em auto;
font-size: larger;
}
.large-btn:hover {
background: linear-gradient(135deg, #8235A7, #B55BC4);
transform: scale(1.05);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}