-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (92 loc) · 2.04 KB
/
style.css
File metadata and controls
105 lines (92 loc) · 2.04 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');
body {
background-color: rgb(7, 31, 59);
}
h1 {
text-align: center;
font-family: Montserrat;
color: white;
}
.header {
background-image: url(img/banner.png);
padding: 50px;
background-repeat: no-repeat;
background-size: 100% 100%;
font-size: x-large;
text-shadow: 2px 2px #000000;
}
.header2 {
background-image: url(img/banner.png);
padding: 50px;
background-repeat: no-repeat;
background-size: 100% 100%;
font-size: x-large;
text-shadow: 2px 2px #000000;
}
.body {
color:white;
font-size:xx-large;
text-align:center;
font-family:Roboto;
}
div.gallery {
margin: 5px;
border: 1px solid #ccc;
float: left;
width: 360px;
background-color: black;
font-family: Roboto;
border-radius: 15px;
}
div.gallery:hover {
border: 1px solid rgb(255, 255, 255);
}
div.gallery img {
width: 100%;
height: auto;
border-radius: 15px;
}
div.desc {
padding: 15px;
text-align: center;
color:white;
}
div.desc:h2 {
color:white;
font-family:Montserrat;
}
.content {
color:white;
font-family: Montserrat;
text-align: center;
padding: 50px;
}
h2{
color:white;
font-family: 'Montserrat', sans-serif;
}
.button {
border: none;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
border-radius: 20px;
}
.button1 {
background-color: white;
color: black;
border: 2px solid #4CAF50;
}
.button1:hover {
background-color: maroon;
color: rgb(255, 255, 255);
border-radius: 50px;
border: 2px solid peachpuff;
}