-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (71 loc) · 1.31 KB
/
style.css
File metadata and controls
82 lines (71 loc) · 1.31 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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
* {
color: white;
font-family: 'Roboto', sans-serif;
font-size: 150%;
margin: 0;
}
#form {
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
width: 100%;
height: 10%;
text-align: center;
}
#wavelength {
border: none;
background-color: black;
color: white;
width: 20%;
height: 100%;
border-radius: 6px;
text-align: center;
font-family: 'Roboto', sans-serif;
font-size: 80%;
}
body {
overflow-x: hidden;
}
footer {
position: fixed;
width: 10vh;
height: 10vh;
padding: 1%;
bottom: 1%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #333;
border-radius: 25px;
}
h2 {
font-size: 50%;
}
#github-logo {
width: 100%;
}
#flex-container {
width: 100%;
height: 100vh;
position: absolute;
display: flex;
z-index: -1;
flex-direction: row;
flex-wrap: nowrap;
align-items: stretch;
}
#lumen-response, #algo-response {
background-color: black;
transition: background-color 0.8s;
flex-grow: 1;
width: 50%;
height: 100%;
}
.response-tag {
position: relative;
bottom: 1%;
left: 50%;
top: 90vh;
transform: translate(-50%, -50%);
}