-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
180 lines (156 loc) · 2.89 KB
/
style.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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'JetBrains Mono', monospace;
}
.hidden{
display: none;
}
/* NAVIGATION */
header{
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 10px 100px;
display: flex;
justify-content: space-between;
background-color: #786F9E;
color: white;
}
.logoContainer img{
width: 3em;
}
nav{
padding: 1em 0px;
}
nav a{
margin: 0 10px;
padding: 5px 10px;
color: white;
text-decoration: none;
transition: 0.3s;
}
nav a:hover{
color: #FFA629;
}
/* MAIN */
body{
background-color: #413C58;
color: white;
display: flex;
margin-top: 100px;
}
section{
width: 100%;
padding: 20px 100px;
}
/*=====> HOME PAGE <======*/
.searchSection{
justify-content: center;
align-items: center;
}
.searchTitle {
justify-items: center;
margin: 20px 20px 20px 20px;
}
.searchInput{
display: inline-flex;
justify-content: center;
align-items: center;
width: 100%;
}
.searchInput input{
width: 100%;
}
/*git streak 1*/
/*=====> EDIT DATA PAGE <======*/
.editSection{
justify-content: center;
align-items: center;
}
.ChangeType{
justify-items: center;
margin: 20px 20px 20px 20px;
}
.dataInputSection{
display: inline-flex;
justify-content: center;
align-items: center;
width: 100%;
}
.dataInputSection label{
width: 100%;
}
/*=====> REFERENCE PAGE <======*/
.references {
justify-content: center;
align-items: center;
font-size: 2em;
}
.references h2{
justify-self: center;
margin: 0 20px 20px;
padding: 5px 10px;
}
.references a{
text-decoration: underline;
font-size: 0.7em;
margin: 0 10px;
padding: 5px 10px;
color: white;
}
/* TextBox */
input[type="text"]{
display: flex;
justify-content: center;
align-items: center;
height: 3em;
width: 20em;
font-size: 1em;
margin: 20px 25px;
padding: 10px 20px;
border-radius: 1em;
border: none;
background-color: #D5F0F0;
color:#413C58;
}
/* BUTTONS */
button{
padding: 10px 20px;
margin: 20px 25px;
border: 2px dashed transparent;
border-radius: 1em;
height: 3.5em;
cursor: pointer;
background-color: #96E078;
transition: 0.1s;
font-weight: bold;
}
button:hover{
background-color: #FFA629;
}
.deleteToggle{
background-color: #F24822;
color: white;
}
.deleteToggle.active{
background-color: transparent;
color:#F24822;
border: 2px dashed #F24822;
}
.insertToggle.active{
background-color: transparent;
color: #96E078;
border: 2px dashed #96E078;
}
.dataInputSection button{
margin: 10px 20px 25px;
}
.DeleteButton{
margin: 10px 20px 25px;
background-color: #F24822;
color: white;
}