-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
103 lines (87 loc) · 1.8 KB
/
index.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
body{
width:auto; height:97.5vh;
display:flex;
flex-direction:column;
justify-content:space-around;
align-items:center;
}
#container{
display:flex;
flex-direction:row;
justify-content:center;
align-items:center;
overflow-x:hidden;
}
.card{
box-sizing:border-box;
margin:0px; padding:3.5% 5%;
width:33.3%; height:100%;
display:flex;
flex-direction:column;
justify-content:space-around;
align-items:flex-start;
}
.title{
font-family: 'Big Shoulders Display', cursive;
color:hsl(0, 0%, 95%);
}
.body{
color:hsla(0, 0%, 100%, 0.75);
font-family: 'Lexend Deca', sans-serif;
}
[class*="learn"]{
border-radius:26px;
width:auto; height:auto;
background-color:hsl(0, 0%, 95%);
font-family: 'Lexend Deca', sans-serif;
margin-top:60px;
}
.learn1{color:hsl(31, 77%, 52%)}
.learn2{color:hsl(184, 100%, 22%)}
.learn3{color:hsl(179, 100%, 13%)}
.learn1:hover{ background-color:hsl(31, 77%, 52%); color:hsl(0, 0%, 95%); cursor:pointer; border:2px white solid;}
.learn2:hover{ background-color:hsl(184, 100%, 22%); color:hsl(0, 0%, 95%); cursor:pointer; border:2px white solid;}
.learn3:hover{ background-color:hsl(179, 100%, 13%); color:hsl(0, 0%, 95%); cursor:pointer; border:2px white solid;}
/*Desktop*/
@media screen and (max-width:1440px)
{
#container{
width:70%; height:75%;
border-radius:10px;
}
.title{
font-size:35px;
}
[class*="learn"]{
padding:13px 27px;
}
}
/*Mobile*/
@media screen and (max-width:375px)
{
#container{
width:100%; height:100%;
border-radius:10px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:flex-start;
}
img{
width:35px; height:25px;
}
.card{
width:100%; height:33.3%;
padding:2% 10%;
}
.title{
font-size:20px;
}
.body, [class*="learn"]{
font-size:12px;
}
[class*="learn"]{
margin:0px;
padding:8px 10px;
}
}