-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxtc.css
77 lines (73 loc) · 1.19 KB
/
xtc.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
/* xtc.css */
.grid {
display: grid;
border: 2px blue solid;
height: 500px;
width:400px;
grid-template: repeat(3, 1fr) / 3fr 50% 1fr;
grid-row-gap: 20px;
grid-column-gap: 5px;
}
.box {
background-color: dogerblue;
color: black;
border-radius: 0px;
border: 2px black solid;
}
* {
box-sizing: border-box;
}
body {
background-image: radial-gradient(circle, #506c97, #0093c2, #00b9bd, #00d983, #a8eb12);
}
p {
font-family: Arial;
}
h1 {
text-align: center;
}
p {
color: blue;
font-size: 20px;
}
h5 {
color: maroon;
border: 1px solid red;
width: 95px;
padding: 15px;
text-align: center;
border-radius: 15px;
}
.upperclass{
bold: red;
}
.description h5 {
color: teal;
}
.share a {
background: green;
border: 1px solid red;
border-radius: 3px;
color: white;
display: inline-block;
text-decoration: none;
padding: 14px;
}
.caption {
opacity: 0.70;
color: black;
background-color: grey;
display: block;
font-family: 'Playfair Display', serif;
font-size: 14px;
font-style: italic;
line-height: 14px;
margin-left: 20px;
padding: 10px;
position: align right;
top: 80%;
width: 18%;
}
table, td {
border: 1px solid black;
}