-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (94 loc) · 1.95 KB
/
Copy pathstyle.css
File metadata and controls
115 lines (94 loc) · 1.95 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
body {
background-image: url(./assets/background.jpg);
background-size: cover;
height: 100hv;
margin-top: 20px;
}
html {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}
.container {
text-align: center;
}
#searchField {
padding: 10px;
width: 30%;
box-sizing: border-box;
margin-right: 10px;
margin-bottom: 10px;
font-size: large;
font-family: 'Space Mono', monospace;
color: #40a8d8;
border: 2px solid black;
border-radius: 10px;
background-color: rgba(0, 0, 0, 0.3);
}
#searchDiv {
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
border: 2px solid black;
background-color: rgba(0, 0, 0, 0.3);
border-radius: 10px;
max-width: 30%;
}
#searchButton {
font-weight: bold;
font-size: large;
color: #40a8d8;
/* Text color for the button */
cursor: pointer;
background-color: rgba(0, 0, 0, 0.8);
font-family: 'Space Mono', monospace;
border: 2px solid black;
padding: 14px 28px;
border-radius: 10px;
position: relative;
top: 0;
max-width: 80%;
margin-right: 20px;
margin-left: 20px;
}
#inputDescription{
max-width: 40%;
margin: 0 auto;
margin-bottom: 10px;
margin-top: 5px;
font-family:'Space Mono', monospace;
font-weight: bold;
}
#nextStarts {
max-width: 50%;
margin: 0 auto;
margin-top: 30px;
padding: 10px;
border: 2px solid black;
border-radius: 10px;
background-color: rgba(0, 0, 0, 0.5);
}
#headingNextStarts{
padding-top: 50px;
margin: 0 auto;
max-width: 50%;
font-family: 'Space Mono', monospace;
font-size: 20px;
font-weight: bold;
}
.startElement {
color: #40a8d8;
font-family: 'Space Mono', monospace;
}
.blackLine{
border-top: 2px solid black;
margin: 10px 0;
}
h1{
font-family: 'Space Mono', monospace;
border-radius: 10px;
padding: 10px;
max-width: 80%;
}