-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle3.css
More file actions
88 lines (72 loc) · 1.29 KB
/
Copy pathstyle3.css
File metadata and controls
88 lines (72 loc) · 1.29 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Kumbh Sans', sans-serif;
}
a:link {
color: green;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: pink;
background-color: transparent;
text-decoration: none;
}
h1 {
margin-top: 1rem;
color:#c94103;
}
.customIndent {
padding-left: 3em;
color: blueviolet;
}
p.indent {
text-indent: 30px;
}
p {
text-align: justify;
}
body {
margin-top: 1rem;
margin-left: 10rem;
margin-right: 10rem;
/*background-color: rgb(152, 210, 218);*/
background-image: url(/img/flare.jpg);
background-repeat: no-repeat;
background-size: 100% contain;
color: white;
}
.table-center {
margin-left: auto;
margin-right: auto;
}
td {
text-align: center;
}
.boxpadding {
border: 5px solid rgb(0, 77, 47);
padding: 10px;
margin-left: 18rem;
margin-right: 18rem;
margin-bottom: 1rem;
text-align: center;
}
label {
width: 160px;
display: inline-block;
}
.myimg {
margin: 2rem;
width: 12rem;
height: 15rem;
display: block;
margin-left: auto;
margin-right: auto;
}
@media screen and (min-height: 720px) {
body {
background-image: url(/img/leaves.jpg);
}
}