-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (66 loc) · 1.1 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
body{
background-image: url('images/background.jpg');
background-size: cover;
font-family: helvetica;
}
.container{
background-color: rgba(0,0,0,0.5);
padding-top: 75px;
padding-bottom: 100px;
margin-top: 50px;
margin-left: 400px;
margin-right: 400px;
border-radius: 20px;
}
header{
text-align: center;
color: #32CD32;
}
.logo{
width: 250px;
}
nav{
text-align: center;
background-color: #32CD32;
margin-left: 75px;
margin-right: 75px;
padding: 10px;
}
main{
margin-left: 75px;
margin-right: 75px;
color: white;
}
div > h2{
display: inline-block;
margin-top: 20px;
margin-bottom: 5px;
}
div > h5{
margin-top: 5px;
margin-bottom: 5px;
}
div > h5:before{
content: "\21A6";
}
div > p{
margin: 1px;
}
.charge1{
background-color: orange;
height: 30px;
width: 350px;
border-radius: 5px;
}
.charge2{
background-color: #32CD32;
height: 30px;
width: 500px;
border-radius: 5px;
}
.charge3{
background-color: red;
height: 30px;
width: 150px;
border-radius: 5px;
}