-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (62 loc) · 1.05 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
body {
font-family: "Open Sans", sans-serif;
text-align: center;
color: whitesmoke;
}
div{
background-image: linear-gradient(120deg, lightseagreen, lightskyblue);
border: 3px inset black;
display: inline-block;
width: 60%;
margin: 5vh 0;
padding: 1vh;
}
div:hover{
background-image: linear-gradient(120deg, steelblue, lightskyblue);
}
#top{
font-weight: 800;
font-size: 5vw;
text-shadow: 1px 1px 5px grey;
}
h2{
font-size: 3vw;
font-weight: 600;
text-shadow: 1px 1px 3px darkslategray;
}
p{
text-shadow: 1px 1px 3px darkslategray;
font-weight: 300;
font-size: 2vw;
}
span{
font-weight: 600;
}
@media only screen and (max-width: 1000px) {
div{
width: 85%;
}
h2{
font-size: 4vw;
}
p{
font-size: 3vw;
}
#top{
font-size: 6vw;
}
}
@media only screen and (max-width: 700px) {
div{
margin-top: 3vh;
}
h2{
font-size: 5vw;
}
p{
font-size: 6vw;
}
#top{
font-size: 10vw;
}
}