forked from dudeofea/ratt-signal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathratt-signal.css
98 lines (85 loc) · 1.82 KB
/
ratt-signal.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
/* Color Palette */
/* Fonts */
@import url(https://fonts.googleapis.com/css?family=Niconne);
@import url(https://fonts.googleapis.com/css?family=Montserrat);
/* Global Styles */
body, html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background-color: #071E22;
color: #E7ECEF;
font-family: "Niconne";
text-align: center; }
h1 {
font-size: 500%;
font-weight: normal; }
p {
font-family: "Montserrat";
font-size: 30px; }
img {
-khtml-user-select: none;
-o-user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
user-select: none; }
ul{
list-style-type: none;
}
input[type="text"] {
width: 30%;
align-content: center;
align-self: center;
font-family: sans-serif;
font-size: 18px;
box-shadow: none;
padding: 10px;
border: 1px solid #fff;
border-radius: 5px;
background-color: #071E22;
color: #E7ECEF;
transition: border 0.3s; }
input[type="text"]:focus,
input[type="text"].focus {
outline: none;
border: 1px solid #D9594C;
transition: background-color 0.3s ease-in, color 0.3s ease-in; }
.ghost-button {
font-family: sans-serif;
font-size: 18px;
display: inline-block;
width: 250px;
padding: 10px;
color: #fff;
background-color: #071E22;
border: 1px solid #fff;
border-radius: 5px;
text-align: center;
outline: none;
text-decoration: none;
transition: background-color 0.2s ease-out, color 0.2s ease-out; }
.ghost-button:hover,
.ghost-button:active {
background-color: #D9594C;
color: #fff;
transition: background-color 0.3s ease-in, color 0.3s ease-in; }
.footer{
margin: center;
bottom: 0;
left: 0;
right: 0;
position: fixed;
}
.footer p{
color: #E7ECEF;
font-size: 20px;
}
.footer a{
text-decoration: none;
color: #E7ECEF;
}
.footer a:hover {
color: #D9594C;
}
/*# sourceMappingURL=ratt-signal.css.map */