-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
94 lines (80 loc) · 1.21 KB
/
styles.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
.container {
display: flex;
flex-direction: column;
justify-content: center;
width: 50%;
}
.title {
font-size: 96px;
font-weight: 900;
}
.form-container {
display: flex;
flex-direction: row;
}
.form-element {
margin-right: 1rem;
}
.negative {
color: white;
-webkit-text-fill-color: black;
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: white;
}
#submit {
width: 10rem;
height: 2rem;
border-radius: 0px;
background-color: white;
border: none;
padding: 0;
font: inherit;
cursor: pointer;
outline: inherit;
}
body {
width: 100vw;
height: 100vh;
background-color: black;
color: white;
font-family: "Raleway", sans-serif;
font-weight: 400;
padding: 2rem;
-ms-overflow-style: none;
scrollbar-width: none;
}
body::-webkit-scrollbar {
display: none;
}
strong {
font-weight: 600;
}
a:link:active,
a:visited:active,
a:link,
a:visited {
color: inherit;
}
@media screen and (max-width: 600px) {
.container {
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
}
.title {
font-size: 64px;
font-weight: 900;
}
body {
padding: 1rem;
}
.form-container {
display: block;
}
.form-element {
margin-right: 0rem;
width: 90%;
margin-top: 1rem;
}
}