-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (113 loc) · 1.7 KB
/
Copy pathstyle.css
File metadata and controls
113 lines (113 loc) · 1.7 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Consolas", sans-serif;
}
h2 {
color: #555fff;
}
header {
margin-bottom: 1pc;
padding: 20px;
background: #202020;
color: white;
border-radius: 3px;
outline: 1px solid white;
}
.big {
font-size: 1.5em;
font-weight: 800;
margin-bottom: 5px;
margin-top: 3px;
}
.grey {
color: grey;
}
.grey strong {
color: white;
}
.top-nav {
display: flex;
}
.top-nav a {
flex: auto;
color: grey;
text-decoration: none;
font-size: 0.7em;
}
svg {
width: 100%;
height: auto;
display: block;
margin-top: 1pc;
}
.hero {
background: linear-gradient(135deg, #5555ff, #ff00ff, #ff5555);
color: white;
text-align: center;
padding-top: 25px;
padding-bottom: 25px;
border-radius: 10px;
}
.hero h2 {
color: white;
}
.send {
margin: 10px;
border-radius: 10px;
padding: 15px;
}
.send a {
color: white;
text-decoration: none;
}
.send a:visited {
color: white;
text-decoration: none;
}
.send a:hover {
color: white;
text-decoration: none;
}
.sub {
text-align: center;
}
.sub input {
margin: 10px;
}
button, .send {
background: #ff6b6b;
color: white;
}
button {
padding: 5px;
}
.card {
background: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.price {
text-align: center;
}
footer {
background: #202020;
color: white;
outline: 1px solid white;
padding: 10px;
border-radius: 3px;
margin-top: 25px;
}
.foot-nav {
display: flex;
}
.foot-nav a {
color: #787878;
flex: auto;
font-size: 0.5em;
text-decoration: none;
}