-
Notifications
You must be signed in to change notification settings - Fork 4
/
Page_style.css.h
68 lines (66 loc) · 1.78 KB
/
Page_style.css.h
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
const char PAGE_style_css[] PROGMEM = R"=====(
body { color: #000000; font-family: avenir, helvetica, arial, sans-serif; letter-spacing: 0.15em;}
hr { background-color: #eee; border: 0 none; color: #eee; height: 1px; }
.btn, .btn:link, .btn:visited {
border-radius: 0.3em;
border-style: solid;
border-width: 1px;
color: #111;
display: inline-block;
font-family: avenir, helvetica, arial, sans-serif;
letter-spacing: 0.15em;
margin-bottom: 0.5em;
padding: 1em 0.75em;
text-decoration: none;
text-transform: uppercase;
-webkit-transition: color 0.4s, background-color 0.4s, border 0.4s;
transition: color 0.4s, background-color 0.4s, border 0.4s;
}
.btn:hover, .btn:focus {
color: #7FDBFF;
border: 1px solid #7FDBFF;
-webkit-transition: background-color 0.3s, color 0.3s, border 0.3s;
transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.btn:active {
color: #0074D9;
border: 1px solid #0074D9;
-webkit-transition: background-color 0.3s, color 0.3s, border 0.3s;
transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.btn--s
{
font-size: 12px;
}
.btn--m {
font-size: 14px;
}
.btn--l {
font-size: 20px; border-radius: 0.25em !important;
}
.btn--full, .btn--full:link {
border-radius: 0.25em;
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
width: 100%;
}
.btn--blue:link, .btn--blue:visited {
color: #fff;
background-color: #0074D9;
}
.btn--blue:hover, .btn--blue:focus {
color: #fff !important;
background-color: #0063aa;
border-color: #0063aa;
}
.btn--blue:active {
color: #fff;
background-color: #001F3F; border-color: #001F3F;
}
@media screen and (min-width: 32em) {
.btn--full {
max-width: 16em !important; }
}
)=====";