-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (81 loc) · 1.37 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
body {
font-family: "Bona Nova", serif;
margin: 0;
}
nav {
display: block;
}
.middle {
background-image: linear-gradient(
180deg,
rgb(230, 63, 193),
rgb(155, 9, 135)
);
color: aliceblue;
border-radius: 30px;
margin: 50px 200px;
padding: 50px;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
-ms-border-radius: 30px;
-o-border-radius: 30px;
}
section {
display: flex;
}
#center {
text-align: center;
}
.welcome {
background-image: url(images/top-banner.png);
background-repeat: no-repeat;
}
.dream {
background-image: url(images/dream-bg.png);
background-repeat: no-repeat;
background-position: right;
}
.cards {
display: flex;
margin: 50px 150px;
}
h1 {
font-size: 50px;
}
h2 {
font-size: 30px;
}
.half-width {
width: 50%;
padding: 50px;
}
.half-width img {
width: 80%;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
}
/* .card {
margin: 5px 10px;
padding: 40px 10px;
} */
.card img {
width: 90%;
}
.button {
background-image: linear-gradient(90deg, orange, rgb(255, 113, 132));
text-decoration: none;
color: aliceblue;
margin: 5px;
padding: 10px 40px;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
}
.buton {
text-decoration: none;
}