forked from HackYourFuture/JavaScript3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
113 lines (105 loc) · 2.18 KB
/
app.css
File metadata and controls
113 lines (105 loc) · 2.18 KB
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
* {
box-sizing: border-box;
}
h5 {
padding: 0;
margin: 0;
}
.tableData{
font-weight:bold;
}
#header {
margin-top:40px;
width : 75%;
height:75px;
background-color:blue;
text-align:left;
padding-top: 25px;
border:2px solid black;
font-family: 'Times New Roman', Times, serif;
font-size: 1em;
box-shadow:10px 7px 5px 5px rgba(0, 0, 0, 0.075);
}
#selectLabel{
padding: 2px 10px 2px 15px ;
color: white;
font-size:18px;
font-family: 'Times New Roman', Times, serif;
}
#selectID{
width:20%;
height:30px;
font-size:18px;
font-family: 'Times New Roman', Times, serif;
padding: 2px 10px 2px 15px ;
box-shadow: 7px 5px 5px rgba(0, 0, 0, 0.075);
}
#tableContainer{
background-color:white;
font-size:18px;
font-family: 'Times New Roman', Times, serif;
margin: auto;
width:40%;
box-shadow:10px 7px 5px 5px rgba(0, 0, 0, 0.075);
padding:5px;
float: left;
}
.alert-error{
background-color: bisque;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
#contContainer {
margin-left: 10%;
background-color:white;
font-size:18px;
font-family: 'Times New Roman', Times, serif;
width: 50%;
box-shadow:10px 7px 5px 5px rgba(0, 0, 0, 0.075);
float: right;
}
#contributorsTable {
width: 50%;
}
.contributorsTr {
display: flex;
align-items: center;
justify-content: space-between;
}
#contributorsDiv a:nth-last-child(n+2) tr {
border-bottom: 1.2px solid rgb(232, 232, 236);
}
.cont-images {
width: 70px;
border-radius: 10px;
margin: 10px;
box-shadow:5px 3px 2px 2px rgba(0, 0, 0, 0.075);
}
.cont-name {
margin-right: auto;
}
.cont-num {
display: inline;
background-color:white;
min-width: 25px;
border-radius: 5px;
color: black ;
padding: 5px;
text-align: center;
}
#result {
width: 100%;
margin: 0 auto;
}
@media screen and (max-width: 767px) {
#result {
max-width: 800px;
}
#tableContainer {
width: calc(60% - 10px);
float:left;
}
#contContainer {
width: calc(40% - 15px);
float: right;
}
}