-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathratt-signal.scss
93 lines (82 loc) · 1.65 KB
/
ratt-signal.scss
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
/* Color Palette */
$dark: #071E22;
$red: #D9594C;
$blue1: #1D7874;
$blue2: #679289;
$light: #E7ECEF;
/* 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: $dark;
color: $light;
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: $dark;
color: #E7ECEF;
transition: border 0.3s;
}
input[type="text"]:focus,
input[type="text"].focus {
outline: none;
border: 1px solid $red;
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: $dark;
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: $red;
color: #fff;
transition: background-color 0.3s ease-in,
color 0.3s ease-in;
}