-
Notifications
You must be signed in to change notification settings - Fork 0
/
just.css
119 lines (110 loc) · 1.67 KB
/
just.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
h1 {
background-color: lightBlue;
color: white;
text-align: center;
}
h2 {
background-color: PaleTurquoise;
color: black;
text-align: center;
margin: 5;
padding: 0;
}
.list1 {
border-style: dotted;
border-width: 2px;
border-color: lightblue;
}
.list2 {
border-style: dashed;
border-width: 2px;
border-color: lightblue;
}
div {
background: HoneyDew;
}
table,
th,
td {
border: 1px solid;
border-collapse: collapse;
width: 50%;
padding: 5px;
}
th,
td {
padding: 15px;
}
th {
background-color: PaleTurquoise;
color: black;
font-size: 19px;
}
#footer {
background: lightblue;
text-align: center;
font-variant: small-caps;
font-size: 18px;
}
* {
box-sizing: border-box;
}
@media screen and (max-width: 768px) {
body {
background-color: lightyellow;
}
h1 {
font-size: 24px;
color: lightyellow;
background: lightSeaGreen;
text-align: left;
}
h2 {
background: MediumAquaMarine;
}
div {
text-align: center;
color: darkgreen;
font-size: 20px;
}
table,
td,
th {
font-size: 20px;
color: lightyellow;
background-color: Teal;
border: strongwhite;
}
th {
background-color: lightSeaGreen;
}
}
@media screen and (max-width: 600px) {
body {
background: pink;
text-align: center;
}
h1 {
background: orchid;
text-align: center;
}
h2 {
background: plum;
}
div {
background: LavenderBlush;
font-size: 22px;
color: hotpink;
}
table,
td,
th {
background-color: AliceBlue;
color: plum;
font-size:22px;
border: strong;
border-color: hotpink;
border-collapse: collapse;
}
td{background-color:lavander}
}