-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (87 loc) · 1.55 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
86
87
body{
font-family: 'Poppins', sans-serif;
margin: 0;
}
.welcome{
background-color: cyan;
border-radius: 30px;
margin-top: 1%;
margin-right: 2%;
margin-bottom: 5%;
margin-left: 10%;
padding-left: 4%;
}
.welcome h1{
font-size: 50px;
text-shadow: 5px 5px 5px wheat;
}
.welcome span{
color:rgb(255, 94, 0);
}
.intro{
margin-left: 10%;
margin-bottom: 10%;
}
.intro p{
text-align: justify;
}
.link-button{
background-image: linear-gradient(orange, rgb(19, 59, 238));
border-radius: 5px;
text-decoration: none;
color: aliceblue;
padding: 10px 40px;
font-weight: 700;
font-size: 18px;
}
.flexible-container{
display: flex;
margin-bottom: 100px;
}
.half-width{
width: 50%;
}
.half-width img{
width: 95%;
padding-left: 2%;
padding-right: 1%;
margin-top: 8%;
}
.first-part{
background-image: url(images/top-banner.png);
background-repeat: no-repeat;
}
.second-part{
background-image: url(images/dream-bg.png);
background-repeat: no-repeat;
background-position: right;
}
.dev-shadow{
width: 40%;
margin-left: 6%;
margin-right: 5%;
padding-left: 20px;
box-shadow: 10px 10px 20px goldenrod;
border-radius: 15px;
border-left: 10px solid;
}
.last-part{
background-image: url(images/exp-bg.png);
background-repeat: no-repeat;
background-position: left;
}
#full-dev{
border-image: linear-gradient(orange,red);
border-image-slice: 1;
}
#baby-dev{
border-image: linear-gradient(green,pink);
border-image-slice: 4;
}
footer{
background-color: goldenrod;
padding: 2px;
}
footer p{
text-align: center;
}