-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.css
127 lines (114 loc) · 1.81 KB
/
page.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
.row {
margin-bottom: 20px;
}
.button.button-small {
height: 30px;
line-height: 30px;
padding: 0px 10px;
}
body{
/* background-image: url("./donbg.jpeg");
background-repeat: no-repeat;
background-size: contain;
background-position: center center; */
}
#heads{
display: flex;
}
nav{
list-style: none;
}
a{
text-decoration: none;
color:rgb(0, 0, 0);
cursor: pointer;
}
li a:hover{
opacity: 1;
color: #77dd77;
font-weight: bold;
}
header{
/* position: absolute; */
width: 100%;
display: flex;
justify-content: space-between;
background-color: rgba(255,255,255,0.6);
align-items: center;
padding: 35px 100px 15px;
opacity: 0;
animation: 1s fadein 0.5s forwards;
}
h2{
font-family: "Quicksand",sans-serif;
display: inline-block;
}
nav{
display: flex;
margin-right: -15px;
}
nav li{
display: inline-block;
}
/*li{
margin: 0 15px;
}*/
li a{
color: black;
font-family: 'Josefin Sans', sans-serif;
padding: 0px 20px;
cursor: pointer;
}
@keyframes fadein{
0%{
opacity: 0;
}
100%{
opacity: 1;
}
}
td input[type=text],
td select {
width: 100%;
height: 30px;
margin: 0;
padding: 2px 8px;
}
th:last-child {
text-align: right;
}
td:last-child {
text-align: right;
}
td:last-child .button {
width: 30px;
height: 30px;
text-align: center;
padding: 0px;
margin-bottom: 0px;
margin-right: 5px;
background-color: #FFF;
}
td:last-child .button .fa {
line-height: 30px;
width: 30px;
}
@media (max-width:1000px){
#heads{
padding: 20px 50px;
flex-direction: column;
text-align: center;
}
#heads h2{
margin-bottom: 15px;
}
#heads nav li{
font-size: 12px;
padding: 6px;
/* width: 20%; */
text-align: center;
display: inline-block;
align-items: center;
justify-content: center;
}
}