-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (104 loc) · 2.23 KB
/
style.css
File metadata and controls
112 lines (104 loc) · 2.23 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
*{
margin: 0;
padding: 0;
}
@font-face {
font-family: 'Gotham Screen Smart';
src: local('Gotham Screen Smart Book'), local('Gotham-Screen-Smart-Book'),
url('./fonts/GothamSSm-Book.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}
body{
background: rgba(18, 18, 18, 1);
}
.main{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background: rgba(18, 18, 18, 1);
}
h1, h2, h3{
color: white;
text-align: center;
margin: 15px;
font-family: 'Gotham Screen Smart', sans-serif;
font-style: normal;
font-weight: 500;
line-height: 140%;
}
input{
width: 300px;
height: 40px;
background: transparent;
flex-direction: column;
border: none;
margin: 15px;
outline: none;
font-size: 1.2rem;
color: white;
padding: 0 10px;
font-family: 'Gotham Screen Smart', sans-serif;
}
output{
background: transparent;
flex-direction: column;
border: none;
margin: 15px;
outline: none;
font-size: 1.2rem;
color: white;
font-family: 'Gotham Screen Smart', sans-serif;
}
button {
position: relative;
overflow: hidden;
transition: background 400ms;
color: #171717;
background-color: #2BB1FF;
padding: 1rem 2rem;
font-family: 'Gotham Screen Smart', Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;
font-size: 1.5rem;
outline: 0;
border: 0;
border-radius: 0.25rem;
box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3); /* black with 30% opacity */
cursor: pointer;
margin: 10px;
}
span.ripple {
position: absolute;
border-radius: 50%;
transform: scale(0);
animation: ripple 600ms linear;
background-color: rgba(255, 255, 255, 0.7);
}
@keyframes ripple {
to {
transform: scale(4);
opacity: 0;
}
}
button:hover{
text-decoration: none;
background-color: rgba(43, 177, 255, 0.8);
}
select{
font-family: 'Gotham Screen Smart', sans-serif;
background: transparent;
background-color: #171717;
color: white;
border: none;
}
label{
color: white;
margin: 15px;
font-family: 'Gotham Screen Smart', sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 140%;
}