-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
92 lines (79 loc) · 1.44 KB
/
stylesheet.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
p {
font-family: Roboto, sans-serif;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 700px;
padding: 1px;
}
div {
padding: 0.5px;
}
#header {
display: flex;
align-items: center;
background: grey;
min-height: 8rem;
max-width: 750px;
padding: 0.5rem;
border-radius: 5px;
}
#instructions_1,
#instructions_2 {
display: flex;
align-items: center;
background: lightgray;
min-height: 1rem;
max-width: 750px;
padding: 0.5rem;
border-radius: 5px;
}
#searchbar {
display: flex;
align-items: center;
background: lightgray;
min-height: 2rem;
max-width: 750px;
padding: 0.5rem;
}
input {
font-family: Roboto, sans-serif;
border: none;
appearance: none;
background: white;
border-radius: 3px;
padding: 6px;
width: 250px;
outline: none;
border-radius: 5px;
}
button {
padding: 6px;
}
select {
padding: 3px;
}
h1 {
color: black;
font-family: "Open Sans", sans-serif;
}
#tulos {
font-family: Roboto, sans-serif;
padding: 0.5rem;
background: #eaeaea;
max-width: 750px;
min-height: 2rem;
border-radius: 5px;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: underline;
}