-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (80 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
79
80
81
82
83
84
85
86
87
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
background-color: yellow;
}
.intro{
height: 100%;
width: 100%;
display: flex;
}
.img-fluid
{
height: 50%;
width: 75%;
}
.pt-1{
height: 70%;
width: 50%;
align-self: auto;
}
.pt-2
{
height: 70%;
width: 50%;
}
.pt-3{
height: 70%;
width: 50%;
}
.activity{
display: flex;
padding: 10px 50px;
align-items: center;
}
h1{
color: red;
font-weight: bold;
transition: 0.5s;
}
button{
border:none;
border-radius: 8px;
padding: 10px;
background:#7B8788;
color:white;
letter-spacing: 1.5px;
font-size: 15px;
transition: 0.5s;
}
button:hover,h1:hover{
transform: scale(1.1);
}
button:hover{
background-color:#4C4B4B;
}
footer{
position: absolute;
bottom: 15px;
width: 100%;
height: 2.5rem;
color: black;
}
footer p{
margin: 0;
font-size: 15px;
}
@media only screen and (orientation:portrait){
.intro{
display:flex;
flex-direction: column-reverse;
}
h1{
font-size: 30px;
}
.act{
padding-bottom: 100px;
}
}