-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
94 lines (85 loc) · 1.97 KB
/
index.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
93
94
* {
margin: 0;
padding: 0;
box-sizing: border-box;
user-select: none;
outline: none;
}
html {
min-width: 50em;
min-height: 25em;
}
body {
background-color: #313638;
color: #ffffff;
main {
display: flex;
flex-direction: column;
align-items: center;
> div {
display: flex;
flex-direction: column;
width: 75%;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
margin: 1em;
box-shadow: 3px 3px 5px #131320;
align-items: center;
padding: 0.5em;
border-radius: 0.5em;
> input {
border: 0;
background-color: transparent;
border-radius: 0.5em;
/* box-shadow: 3px 3px 5px #333333; */
border: 1px #ffffff solid;
color: #ffffff;
font-family: "Times New Roman", Times, serif;
padding: 0.15em 0.5em;
width: 90%;
margin: 0.5em;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
> #links {
display: grid;
grid-template-columns: 10rem 10rem 10rem;
gap: 0.25rem;
align-items: center;
justify-content: center;
max-height: 50vh;
overflow-y: scroll;
width: 100%;
margin: 1em;
padding: 0 0.75em;
font-size: small;
> a {
width: 100%;
text-align: center;
color: black;
text-decoration: none;
border-radius: 0.5em;
box-shadow: 3px 3px 5px #131320;
color: #ffffff;
margin: 0.25em;
padding: 0.1em 1em;
transition:
background-color 0.25s ease,
color 0.25s ease,
box-shadow 0.25s ease;
}
> a:hover {
background-color: #feeceb;
color: #131320;
box-shadow: 0 0 5px #333333;
}
}
> h3,
> h5 {
text-align: center;
}
}
}
}