-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
89 lines (83 loc) · 1.65 KB
/
style.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
$primary: #11998e;
$secondary: #38ef7d;
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 35vh;
font-size: 1.5rem;
background-color:#222222;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Courier New', Courier, monospace;
}
p {
font-size: 18px;
color: white;
}
#container {
padding: 45px 45px;
display: flex;
justify-content: center;
align-items: center;
}
/* CSS */
button {
background: #FF4742;
border: 1px solid #FF4742;
border-radius: 6px;
box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
box-sizing: border-box;
color: #FFFFFF;
cursor: pointer;
display: inline-block;
font-family: nunito,roboto,proxima-nova,"proxima nova",sans-serif;
font-size: 16px;
font-weight: 800;
line-height: 8px;
min-height: 8px;
outline: 0;
padding: 12px 14px;
text-align: center;
text-rendering: geometricprecision;
text-transform: none;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
vertical-align: middle;
}
button:hover,
button:active {
background-color: initial;
background-position: 0 0;
color: #FF4742;
}
button:active {
opacity: .5;
}
input[type=text] {
padding: 7px;
}
input[type=text]:focus {
transition: 0.2s;
font-size: 1rem;
color: $primary;
font-weight:700;
padding-bottom: 6px;
font-weight: 700;
border-width: 3px;
border-image: linear-gradient(to right, $primary,$secondary);
border-image-slice: 1;
}
h3 {
color: white;
border: 1px solid white;
display: grid;
text-align: left;
padding: 15px;
font-size: 12px;
}