-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
183 lines (170 loc) · 3.04 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
178
179
180
181
182
183
body {
background-color: #bdc3c7;
}
/* Header */
header {
border: 5px solid #d35400;
border-radius: 15px;
text-align: center;
background-color: #2c3e50;
margin: 20px;
padding: 10px;
}
header img{
width: 15%;
}
/* Navigation Bar */
nav > ul {
border: 5px solid #d35400;
border-radius: 15px;
margin: 20px;
list-style-type: none;
padding: 0;
overflow: hidden;
background-color: #2c3e50;
}
nav > ul li {
float: left;
}
nav > ul li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav > ul li a:hover:not(.active) {
background-color: #d35400;
}
nav > ul li a.active {
background-color: #bdc3c7;
}
/* Footer */
footer {
margin: 20px;
border: 5px solid #d35400;
border-radius: 15px;
color: white;
background-color: #2c3e50;
text-align: center;
height: 50px;
padding: 15px;
}
/* ----- Complements ----- */
/* Headers */
h1{
color: #2c3e50;
margin: 20px;
}
/* Buttons */
button{
border: 3px solid #d35400;
border-radius: 10px;
background-color: #2c3e50;
color: white;
margin: 20px;
padding: 5px;
}
button:hover{
background-color: #e67e22;
cursor: pointer;
}
.button{
border: 3px solid #d35400;
border-radius: 10px;
background-color: #2c3e50;
color: white;
margin: 0px;
padding: 5px;
}
.button:hover{
background-color: #e67e22;
cursor: pointer;
}
/* Panels */
.panel {
border: 5px solid #d35400;
color: white;
border-radius: 15px 50px;
background-color: #2c3e50;
width: auto;
margin: 20px;
padding: 20px;
}
/* Tables */
.horizontalTable {
margin: 20px;
color: white;
border-color: #d35400;
border-spacing: 0;
font: normal 13px Arial, sans-serif;
}
.horizontalTable th {
border: none;
background-color: #2c3e50;
color: #e67e22;
padding: 10px;
text-align: left;
font-size: 22px;
}
.horizontalTable td {
border: none;
border-top: solid 1px #957030;
background-color: #34495e;
padding: 10px;
}
.horizontalTable th:first-child {
border-radius: 10px 0 0 0;
}
.horizontalTable th:last-child {
border-radius: 0 10px 0 0;
}
.horizontalTable tr:last-child td:first-child {
border-radius: 0 0 0 10px;
}
.horizontalTable tr:last-child td:last-child {
border-radius: 0 0 10px 0;
}
.projects{
width: 50%;
}
.tasks{
width: 90%;
}
.tasks td{
width: 20%;
}
#login {
text-align: center;
width: 150px;
margin: 0 auto 20px;
}
/* Forms */
.form-container{
display: table;
border-collapse: separate;
border-spacing: 50px 0px;
margin: 20px;
}
.form-container form > button{
position: relative;
top: -50%;
left: 100%;
}
.form-section{
display: table-cell;
border: 5px solid #d35400;
border-radius: 20px;
background-color: #2c3e50;
color: white;
text-align: center;
padding: 20px;
}
.form-section legend{
border-radius: 5px;
background-color: #d35400;
}
/* Utilities */
.clearfix {
clear: both;
}