-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (83 loc) · 1.35 KB
/
style.css
File metadata and controls
96 lines (83 loc) · 1.35 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
* {
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
}
body {
font-family: Roboto;
color: #212121;
}
.layout {
min-width: 100%;
}
.homepage {
display: flex;
justify-content: center;
align-items: center;
height: calc(100vh - 2em);
}
.main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
max-width: 100%;
}
.logo {
text-transform: uppercase;
font-weight: 500;
letter-spacing: 3px;
font-size: 1.7rem;
}
.pawn {
height: 0.9em;
width: 0.9em;
}
.info-text {
font-weight: 350;
color: #0a0a0a;
margin-top: 0.5em;
margin-bottom: 0.5em;
text-align: center;
letter-spacing: 1px;
}
.input {
width: 100%;
position: relative;
}
input-container {
}
.input-text {
display: inline-block;
width: 100%;
position: relative;
font-size: 1rem;
padding: 0.5em;
font-family: "Source Code Pro", "SFMono-Regular", Consolas, "Liberation Mono",
Menlo, Courier, monospace;
font-weight: 300;
box-sizing: border-box;
text-align: left;
}
.buttons {
display: flex;
flex-direction: row;
justify-content: center;
}
.button {
margin: 10px;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
color: #f2f2f2;
background-color: #222222;
width: 100vw;
display: block;
overflow: hidden;
padding: 0.5em 1em;
box-sizing: border-box;
}