-
Notifications
You must be signed in to change notification settings - Fork 0
/
homepage_style.css
119 lines (104 loc) · 2.02 KB
/
homepage_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
109
110
111
112
113
114
115
116
117
118
119
.home{
padding:0;
}
.home .slide {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 60rem;
background-size: cover !important;
background-position: center !important;
}
.home .slide .content {
width: 50rem;
}
.home .slide .content h3 {
font-size: 5rem;
text-transform: capitalize;
color: #74d14c;
}
.home .slide .content h4 {
font-size: 4rem;
text-transform: capitalize;
color: #74d14c;
}
.social-handles{
margin-top: 7px;
display:grid;
grid-template-columns: repeat(4, 50px);
}
.social-handles a{
display:inline-block;
width:35px;
height:35px;
display:grid;
align-content: center;
justify-content: center;
border: 0.25rem solid #cf1a18;
border-radius: 4px;
}
.social-handles .fab{
color:#cf1a18;
font-size: 25px;
}
.home .slide .content h4 {
font-size: 1rem;
}
.social-handles .fab:hover{
color:#004aad;
}
@media (max-width: 1200px) {
section {
padding: 3rem 5%;
}
}
@media (max-width: 990px) {
section {
padding: 3rem 2rem;
}
.social-handles a{
display:inline-block;
width:25px;
height:25px;
display:grid;
align-content: center;
justify-content: center;
border: 0.25rem solid #cf1a18;
border-radius: 4px;
}
.social-handles .fab{
color:#cf1a18;;
font-size: 20px;
}
}
@media (max-width: 768px) {
.home .slide{
height:30rem;
}
.home .slide .content h3 {
font-size: 2rem;
}
.home .slide .content h4 {
font-size: 1rem;
}
.home .slide .content a {
font-size: 1rem;
}
.social-handles a{
display:inline-block;
width:20px;
height:20px;
display:grid;
align-content: center;
justify-content: center;
border: 0.25rem solid #cf1a18;
border-radius: 4px;
}
.social-handles .fab{
color:#cf1a18;
font-size: 15px;
}
}