-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
98 lines (91 loc) · 1.53 KB
/
Copy pathindex.css
File metadata and controls
98 lines (91 loc) · 1.53 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
body{
background-color: #fae5d7;
color: #5a2e00;
}
h1{
background-color: rgba(255, 208, 161, 0.65);
}
h2{
background-color: rgba(255, 208, 161, 0.65);
}
h3{
background-color: rgba(255, 208, 161, 0.65);
padding: 30px;
margin: 50px;
}
p{
background-color:#fae5d7;
color: #5a2e00;
border: 2px solid #7e4300;
padding: 30px;
margin: 50px;
}
button{
background-color:#fae5d7;
color: #5a2e00;
border: 2px solid #7e4300;
}
a:link, a:visited{
background-color: #f48000;
color: #fae5d7;
}
a:hover, a:active{
background-color: rgb(244, 128, 0);
}
table {
padding: 30px;
margin: 50px;
}
th,td {
border: 2px solid #5a2e00;
border-radius: 10px;
background-color: #ffb975;
padding: 30px;
margin: 50px;
border-spacing: 30px;
}
/*something difficult here about lists
*/
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #2c1600;
}
li {
float: left;
}
li a {
display: block;
color: #fae5d7;
text-align: center;
padding: 10px;
text-decoration: none;
}
li a:hover {
background-color: #111111;
}
.mycontainer {
display: flex;
}
.mycontainer > div {
width:40%;
}
/*another way how to make table*/
.grid-container {
display: grid;
grid-template-columns: 30% 30% 30%;
}
/*here we work with classes*/
.city {
background-color: #6c1100;
color: white;
border: 2px solid black;
margin: 20px;
padding: 20px;
}
.note {
font-size: 120%;
color: #6c1100;
}