-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (94 loc) · 2.06 KB
/
style.css
File metadata and controls
105 lines (94 loc) · 2.06 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
body {
background-color: #141414;
display: flex;
margin: 0;
width: 100%;
height: 100vh;
}
.search_button {
display: inline-block;
background-color: mediumpurple;
border: 0.08em solid #54399e;
border-radius: 25px;
cursor: pointer;
transition: all 0.2s ease-in-out;
color: white;
font-size: 1.5vw;
padding: 0.5vw 1vw;
}
.search_button:hover {
box-shadow: 0 10px 15px rgba(145, 92, 182, .4);
box-shadow-blur: 100px;
border-color: white;
}
.search_input {
background-color: mediumpurple;
border: 0.08em solid #54399e;
border-radius: 25px;
cursor: text;
display: inline-block;
color: white;
transition: all 0.2s ease-in-out;
font-size: 1.5vw;
padding: 0.5vw;
}
.search_input:hover {
box-shadow: 0 10px 15px rgba(145, 92, 182, .4);
box-shadow-blur: 100px;
border-color: white;
}
.output_icon {
transition: all 0.2s ease-in-out;
margin-top: 100px;
width: 10vw;
height: auto;
}
.output_icon:hover {
box-shadow: 0 10px 15px rgba(145, 92, 182, .4);
box-shadow-blur: 100px;
border-color: white;
}
.output_text {
color: white;
margin: 0.5vh;
font-weight: bold;
font-family: Monospaced, Menlo, Monaco, Consolas, "Courier New", monospace;
font-size: 2vw;
}
.output_motd {
display: inline-block;
color: white;
background-color: #252525;
font-weight: bold;
font-family: Monospaced, Menlo, Monaco, Consolas, "Courier New", monospace;
margin-left: 20px;
border: 2px solid #404040 ;
border-radius: 5px;
font-size: 1.5vw;
padding: 0.5vw 1vw;
}
.output_container {
display: inline-block;
position: relative;
color: white;
background-color: #252525;
margin: 50px;
border: 2px solid #404040 ;
border-radius: 10px;
padding: 10px;
width: 100vw;
height: 100vh;
box-sizing: border-box;
}
.search_header {
position: fixed;
top: 20px;
left: 50%;
transform: translateX(-50%);
padding: 20px;
}
.logo {
position: absolute;
top: 10px;
right: 10px;
}