-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (54 loc) · 791 Bytes
/
style.css
File metadata and controls
54 lines (54 loc) · 791 Bytes
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
}
.intro{
background: #EAF0F1;
}
h1{
color: #4C4B4B;
font-weight: bold;
transition: 0.5s;
}
h3{
color:#2F363F;
}
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{
color:#586776;
background-color:#EAF0F1;
letter-spacing: 0.5px;
}
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;
}
}