-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
108 lines (107 loc) · 2.45 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
/* @import url('https://fonts.cdnfonts.com/css/sansation'); */
body {
margin: 0;
padding: 0;
background-color: #272422;
font-family: "Monteserrat",'Open Sans', sans-serif;
color: #ffffff;
}
.project-link{
position: fixed;
right: 0;
padding: 20px;
}
.project-link a{
color:#fff
}
.project-link a:hover{
color:#aeaeae;
}
.bg-img{
width: 100%;
position: fixed;
z-index: -1;
bottom: 0;
}
.logo-plybtn{
display: flex;
flex-direction: column;
align-items: center;
}
.logo-plybtn a{
margin-top: 40px;
}
.btns-container{
display: flex;
flex-direction: row-reverse;
justify-content: space-between;
align-items: center;
width: 100%;
}
.ply-btn{
all: unset;
background-color: #7FA650;
color: #fff;
font-size: 36;
font-weight: 700;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-align: center;
padding: 20 70;
border-radius: 20px;
transition: background-color 300ms;
cursor: pointer;
-webkit-box-shadow: 10px 10px 31px -7px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 31px -7px rgba(0,0,0,0.75);
box-shadow: 10px 10px 31px -7px rgba(0,0,0,0.75);
}
.ply-btn:hover {
background-color: #64863a;
}
.ply-btn:active {
background-color: #5a7935;
}
a {
all: unset;
}
.learn-btn{
all:unset;
background-color: #BE9537;
color: #fff;
font-size: 36;
font-weight: 700;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-align: center;
padding: 20 60;
border-radius: 20px;
transition: background-color 300ms;
cursor: pointer;
-webkit-box-shadow: 10px 10px 31px -7px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 31px -7px rgba(0,0,0,0.75);
box-shadow: 10px 10px 31px -7px rgba(0,0,0,0.75);
}
.learn-btn:hover{
background-color: #9e7e36;
}
.logo-sm img{
position: fixed;
width: 200px;
padding: 20px;
cursor: pointer;
}
@media only screen and (max-width: 600px) {
.logo-plybtn img {
width: 90%;
}
.ply-btn{
font-size: 25px;
padding: 20px 50px;
}
.learn-btn{
padding: 20px 45px;
font-size: 25px;
}
.btns-container{
justify-content: space-evenly;
}
}