forked from tonyinit/nostrogen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (64 loc) · 1.12 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
body{
background-color: #5a3c90;
margin: 1.5rem;
}
.container {
background-color: #fff;
border-radius: 0.75rem;
max-width: 50rem;
padding: 2rem 2rem;
}
.nospace {
margin: 1.5rem auto;
max-width: 50rem;
}
h1 {
color: #fff;
font-size: 3rem;
font-weight: 500;
text-align: center;
}
h4 {
color: #000;
font-size: 1.5rem;
font-weight: 400;
margin: 0 0 3.5rem 0;
text-align: center;
}
.btn.btn-primary {
background-color: #5a3c90;
border-color: #5a3c90;
}
.btn.btn-primary:hover {
background-color: #4e357e;
border-color: #4e357e;
}
.btn.btn-primary:active, .btn.btn-primary:focus {
background-color: #6544A2;
border-color: #6544A2;
}
.donate-link {
color: #fff;
text-decoration: none;
}
.donate-link:hover {
color: #ff9900;
text-decoration: none;
}
.no-decoration {
text-decoration: none;
color: inherit;
cursor: default;
}
.no-decoration:hover {
text-decoration: none;
color: inherit;
cursor: pointer;
}
.tiny-text {
font-size: 14px;
}
.bold-purple {
color: #5a3c90;
font-weight: 600;
}