This repository has been archived by the owner on Dec 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadministration.css
135 lines (108 loc) · 2.34 KB
/
administration.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
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
/*outline: 1px solid #f00;*/
}
body {
font-family: 'Karla', sans-serif;
background: #795757;
color: #2a2d34;
} /* #795757 */
.navigation-bar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #ffd6d6;
padding: 0 20px;
}
.navigation-bar img {
max-height: 50px;
}
.navigation-bar ul {
display: flex;
justify-content: space-between;
align-items: center;
}
.navigation-bar ul li {
list-style: none;
padding: 7px 14px;
}
.navigation-bar ul li a {
text-decoration: none;
color: #2a2d34;
}
.navigation-bar ul li a:hover {
text-decoration: underline;
}
.button {
background-color: transparent;
border-radius: 14px;
border: 1px solid rgba(0, 0, 0, 0.2);
transition: .125s;
width: 100%;
color: #2a2d2a;
}
.button:hover {
background-color: #795757;
color: #ffd6d6;
}
.trains {
max-width: 700px;
margin: 20px auto;
background-color: #ffd6d6;
padding: 20px;
border-radius: 20px;
}
.trains * {
padding: 5px;
}
.button {
padding: 15px;
}
.trains input {
padding: 7px;
background-color: transparent;
border-radius: 14px;
border: 1px solid rgba(0, 0, 0, 0.2);
transition: .125s;
width: 100%;
}
.trains input:hover {
border-color: rgba(0, 0, 0, 0.4);
}
.trains input:active {
border-color: rgba(0, 0, 0, 0.6);
}
footer {
background-color: #ffd6d6;
color: #2a2d34;
text-align: center;
padding: 20px 30%;
}
footer ul {
margin-top: 5px;
display: flex;
justify-content: space-between;
align-items: center;
list-style: none;
}
footer ul li a {
text-decoration: none;
color: #2a2d34
}
footer ul li a:hover {
text-decoration: underline;
}
footer .up img {
max-height: 25px;
}
footer .up {
display: flex;
gap: 5px;
justify-content: center;
align-items: center;
}