-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
136 lines (120 loc) · 2.15 KB
/
styles.css
File metadata and controls
136 lines (120 loc) · 2.15 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
:root {
--orange: #ff7700;
}
.App {
text-align: center;
width: 100%;
height: 60%;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
* {
margin: 0;
padding: 0;
color: black;
font-family: "JetBrains Mono";
text-align: center;
}
img {
height: 35px;
margin: 0px 10px;
}
.logos {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
body {
margin: 0;
padding: 0;
}
form {
margin-bottom: 40px;
max-width: 300px;
margin-left: auto;
margin-right: auto;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
.form-control {
width: 100%;
padding: 12px 20px;
margin: 30px 0;
box-sizing: border-box;
background-color: var(--gray);
border: none;
border-radius: 8px;
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
resize: none;
font-size: medium;
transition: all ease-in-out 250ms;
}
.form-control:focus {
outline-width: 0px;
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
input:focus::placeholder{
color: transparent;
}
button {
align-items: center;
background-clip: padding-box;
background-color: var(--orange);
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
box-sizing: border-box;
color: white;
cursor: pointer;
position: relative;
text-decoration: none;
transition: all 250ms;
user-select: none;
touch-action: manipulation;
height: 45px;
padding: 0 25px;
border: none;
border-radius: 8px;
max-width: 100px;
margin: 0px auto;
font-weight: 800;
}
button:hover,
button:focus {
background-color: #fb8332;
box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}
button:active {
background-color: #c85000;
box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
#download-button {
padding: 15px;
margin-top: 20px;
background-color: var(--orange);
border-radius: 100%;
transition: all ease-in-out 250ms;
height: 40px;
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
width: 40px;
}
#download-button:hover,
#download-button:focus {
background-color: #fb8332;
}
h1 {
color: black;
margin: 30px 0px 10px 0px;
}
.error{
opacity: 0;
transition: 0.3s all ease;
}
.show{
opacity: 100%;
}