-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (81 loc) · 1.58 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
*{
box-sizing: border-box;
}
img {
float: left;
width: 30%;
height: 30%;
margin:20px;
padding: 50px;
}
a {
color:#fb7a02;
}
a:hover{ /* No a:visted for the blink when hover */
color:rgb(3, 250, 3);
}
header{
font-family: fantasy, sans-serif, arial;
color: rgb(250, 182, 9);
background:#3a0aa8;
margin: 20px;
padding: 20px;
text-align: center;
}
hr{
border: 1px solid magenta;
}
body{ /* there's no margin it to have space around the border*/
background: #7431e0;
border: 1px solid rgb(3, 250, 3);
margin: 0;
}
.intro { /* applied padding and margin here for some space around it */
font-family: fantasy, sans-serif, arial;
color: rgb(232, 248, 6);
padding: 20px 20px 20px 20px;
margin: 20px;
}
#imgblue{
position: absolute;
padding:20px;
margin: 20px;
width: 30%;
height: 30%;
}
.art {
font-family: Sans-serif, 'Times New Roman', Times, serif;
padding: 40px;
margin-left: 30%;
margin-right: 20px;
margin-bottom: 40px;
border: 1px solid rgb(250, 122, 3);
color: rgb(232, 248, 6);
}
.contact {
font-family: fantasy, sans-serif, arial;
color:rgb(232, 248, 6);
text-align: center;
}
.main {
padding:20px 20px 0px 20px;
margin-left: 20px;
}
.foot{
color:rgb(250, 182, 9);
text-align: center;
background-color: #3a0aa8;
padding: 40px;
margin: 20px;
}
#link{
margin: 0px;
}
p{
font-size: 20px;
}
.art > h3{
font-family: fantasy;
font-size: 25px;
color:rgb(250, 182, 9);
}