-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyling.css
104 lines (104 loc) · 1.63 KB
/
styling.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
body,html
{
background-color: rgb(0, 0, 0);
}
header
{
background-color: rgba(6, 21, 83, 0.689);
padding-top: 10px;
height:130px;
top:0;
width: 100%;
left:0;
position: fixed;
}
section
{
width: 100%;
height:250vh;
margin-top: 130px;
background-image: url(../images/BG2.jpg);
background-size: contain;
text-align: center;
padding-top: 3%;
background-attachment: local;
}
div
{
/* background-color: rgba(49,132,155,0.7); */
margin-left: 5vw;
width:90vw;
font-family: 'Bree Serif', serif;
color: rgb(255, 255, 255);
text-shadow: 200px 200px 200px black;
}
article
{
/* background-color: rgba(49,132,155,0.6); */
margin-left: 5vw;
width:90vw;
height: 210vh;
color: white;
font-family: cursive;
font-size: xx-large;
}
button
{
background-color: #000000;
color: white;
padding: 20px;
text-align: center;
font-size: 18px;
margin-left: 10vw;
margin-right: 10vw;
margin-top: 5vh;
cursor: pointer;
border-radius: 15px;
font-family: 'Bree Serif', serif;
}
button:hover
{
background-color: #ffffff;
color: #000000;
}
h1
{
margin-top: 0;
}
p
{
margin-left:10vw;
text-align:justify;
}
#header
{
margin-left: 20vw;
}
#logo
{
float:left;
margin-left: 20px;
}
.content
{
width: 40%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
}
.new
{
background-color: #4CAF50;
color: white;
padding: 20px;
text-align: center;
font-size: 18px;
margin-right: 10vw;
margin-top: 5vh;
cursor: pointer;
border-radius: 15px;
}
.new:hover
{
background-color: #4ccf50;
}