aboutsummaryrefslogtreecommitdiff
path: root/style.css
blob: 2f1cba06449291b3cd55be1fc27fe65925cf27af (plain)
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
html{
  background:#282828;
  font-family: "Fira Code";
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: #282828;
  color: #EADBB2;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-areas:
    ". left right .";
  justify-items: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.left-container {
  grid-area: left;
  height: 400px;
  width: 400px;
}

.right-container {
  grid-area: right;
  height: 50%;
  width: 80%;
}

.gif img {
  max-width: 100%;
  max-height: 100%;
}

.head {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 40px;
  padding-top: 60px;
}

.category {
  display: flex;
  flex-direction: column;
  width: 180px;
}

.bookmark {
  display: flex;
  justify-content: center;
}

.bookmarks {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.title {
  font-size: 20px;
}

li {
  font-size: 16px;
  list-style-type: none;
  padding: 5px
}

a:link {
  text-decoration: none;
  color: #8F9191;
}

a:visited {
  color: #668F8B;
}

a:hover {
  color: #FA7921;
}

.blinking {
  animation: opacity 1s ease-in-out infinite;
  opacity: 1;
}

@keyframes opacity {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* form {
  margin: 0px;
  padding: 0px;
}

.search_box {
  display: flex;
  align-self: center;
  border: 4px solid;
  border-color: rgba(234, 219, 178,0.6);
  border-radius: 10px;
  width: 400px;
  height: 48px;
  margin-bottom: 40px;
}

.input_box {
  border: none;
  outline: none;
  background: none;
  width: 380px;
  padding-top: 12px;

  text-align:center;
  font-family: "Fira Code";
  font-size: 20px;
  color: #EADBB2;
} */