-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
45 lines (39 loc) · 736 Bytes
/
main.css
File metadata and controls
45 lines (39 loc) · 736 Bytes
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
body{
background-color: rgb(255, 244, 95);
}
.wrapper{
margin: 5px;
}
.bg-text{
background-image: url(./assets/Backgrounds_in_CSS.jpg);
width: 45%;
height: 150px;
border-style: ridge;
border-color: darkblue;
border-width: 5px;
}
.bg-text p{
font-style: normal;
font-size: 22px;
font-family: fantasy;
}
.bg-text2{
background-image: url(./assets/oriental-tiles.png);
padding: 10px;
margin: 10px;
border-style: double;
border-width: 5px;
border-color: darkturquoise;
width: 25%;
}
.bg-text2 h2{
text-align: center;
color: white;
}
#names{
color: white;
font-style: normal;
font-family: cursive;
font-size: 16px;
text-align: center;
}