-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
91 lines (78 loc) · 1.49 KB
/
stylesheet.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
.textAlignCenter {
text-align: center;
}
.textAlignLeft {
text-align: left;
}
.textAlignRight {
text-align: right;
}
.imageAlignCenter {
display: block;
margin-left: auto;
margin-right: auto;
}
.button1{
background-color: #12d8ef;
border-radius: 8px;
border-width: 0;
color: #333333;
cursor: pointer;
display: inline-block;
font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
font-weight: 500;
line-height: 20px;
list-style: none;
margin: 0;
padding: 10px 12px;
text-align: center;
transition: all 200ms;
vertical-align: baseline;
white-space: nowrap;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
.button1:hover {
background: #FFF307
}
.footerImage {
transition: all .2s ease-in-out;
height: 30px;
width: 30px;
}
.footerImage:hover {
transform: scale(1.15);
}
.headerText {
color: #FFF307;
user-select: none;
text-decoration: none;
text-decoration-color: #FFF307;
}
.headerText:hover {
text-decoration: bold;
color: #FFF307;
}
.invisText {
user-select: none;
}
.link {
color: #2c74f8;
text-decoration: none;
}
.link:hover {
color: #225dc6;
cursor: pointer;
}
.fourohfour {
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%, -50%);
font-family: Helvetica;
text-align: center;
color: black;
text-decoration: none;
}