-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
134 lines (128 loc) · 2.43 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
/* style="background-color: chartreuse; line-height: 10mm;" */
#logbody{
background-color: #56baec;
}
#divlog{
background-color: whitesmoke;
width: 500px;
height: 235px;
margin: auto;
margin-top: 190px;
border-width: 3px;
border-radius: 20px;
border-style: solid;
border-color:slategrey;
text-align: center;
box-shadow: 10px 15px 10px #277faf;
}
#divlog h3{
color: #ee2553;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
#logout{
background-color: #ee2553;
border-radius: 6px;
margin-left: 1100px;
}
#logform input{
padding: 6px;
border-radius: 5px;
text-align: center;
width: 50%;
margin-bottom: 10px;
box-shadow: 5px 5px 10px #360216;
}
#logform input:hover{
background-color: rgb(236, 227, 227);
}
#logbtn{
margin-top: 9px;
background-color: #56baec;
width: 15%;
border-radius: 5px;
border-color: turquoise;
color: white;
box-shadow: 2px 3px 5px #277faf;
}
#logbtn:hover{
background-color: #2795cc;
}
ul {
list-style-type: none;
background-color: #333;
overflow: hidden;
}
li{
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active){
background-color: darkgrey;
}
.active {
background-color: cornflowerblue;
}
#div1{
margin-left: 100px;
width: 200px;
height: 150px;
background-color: lightgreen;
text-align: center;
float: left;
border-radius: 10px;
}
#div2{
float: left;
width: 200px;
height: 150px;
margin-left: 60px;
background-color: lightslategrey;
text-align: center;
border-radius: 10px;
}
#div3{
float: left;
width: 200px;
height: 150px;
margin-left: 60px;
background-color: mediumpurple;
text-align: center;
border-radius: 10px;
}
#div4{
float: left;
width: 200px;
height: 150px;
margin-left: 60px;
background-color: navajowhite;
text-align: center;
border-radius: 10px;
}
#div5{
clear: both;
margin-left: 400px;
margin-top: 30px;
float: left;
width: 450px;
height: 250px;
background-color:thistle;
text-align: center;
border-radius: 10px;
overflow-x: auto;
}
table{
border-collapse: collapse;
align-self: center;
margin: auto;
}
th, td{
padding: 12px;
text-align: left;
border-bottom: 1px solid slategrey;
}