forked from zarif007/RS-Web-Dev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
118 lines (98 loc) · 1.67 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
body {
color: green;
background-color: bisque;
}
.bluecolor {
color: blue;
background-color: red;
font-family: 'Fascinate', cursive;
text-align: center;
letter-spacing: 10px;
word-spacing: 10px;
line-height: 60px;
}
#red {
color: red;
font-family: 'Roboto', sans-serif;
font-weight: 700;
font-size: large
}
.red {
background-color: red;
display: block;
}
ul {
list-style:square
}
.box {
border: 1px solid blue;
border-radius: 10px;
padding: 10px;
margin: 10px
}
th, td {
border: 1px solid blue;
font-size: 60px;
height: 100px;
}
th {
background-color: aquamarine;
}
th:hover {
background-color: rgba(200, 56, 25, 1);
cursor: pointer
}
table {
border-collapse: collapse;
text-align: center;
vertical-align: middle;
width: 70%;
margin-left: auto;
margin-right: auto;
}
.country {
border: 1px solid black;
background-color: green;
padding: 20px;
margin: 40px;
}
.boxes {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-content: flex-end;
}
.boxes div {
background-color: aqua;
border: 1px solid black;
height: 250px;
width: 250px;
text-align: center;
}
img {
width: 30%;
}
@media (max-width: 480px) {
* {
background-color: aqua;
}
img {
display: none;
}
}
@media (min-width: 481px) and (max-width: 768px) {
* {
background-color: blue;
}
}
@media (min-width: 769px) and (max-width: 1279px) {
* {
background-color: red;
}
}
@media (min-width: 1280px) {
* {
background-color: gold;
}
}