-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
123 lines (101 loc) · 1.85 KB
/
Copy pathabout.css
File metadata and controls
123 lines (101 loc) · 1.85 KB
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
120
121
122
123
body{
background-color: rgba(10, 14, 23, 0.8);
}
a{
text-decoration: none;
color: #FFFFFF;
}
a:hover{
text-decoration: none;
color: #FFFFFF;
}
nav{
background-color: rgb(0, 0, 0,50%);
}
.nav-link,.navbar-brand{
font-size: 24px;
color: #FFFFFF;
text-transform: capitalize;
text-decoration: none;
}
.navbar-brand:hover{
color: #FFFFFF;
}
.nav-link:hover{
color: #FFFFFF;
text-decoration: underline;
text-decoration-color: #951B1B;
transition: 1s;
}
.signup{
background: #951B1B;
border-radius: 20px;
}
.about h1{
font-size: 48px;
font-weight: bold;
color: #FFFFFF;
text-transform: capitalize;
}
.text{
font-size: 24px;
color: #FFFFFF;
}
.hr{
border: 3px solid #951B1B;
background-color: #951B1B;
}
.google,.twitter,.linkedin,.facebook{
width: 65px;
height: 65px;
font-weight: bold;
}
.footer{
background: rgb(10,14,23,0.5);
}
.footer h3{
font-size: 24px;
color: #FFFFFF;
text-transform: capitalize;
}
.footer_title{
font-weight: bold;
}
@media (max-width:1200px){
.nav-link,.navbar-brand{
font-size: 21px;
color: #FFFFFF;
text-transform: capitalize;
text-decoration: none;
}
}
@media (max-width:992px){
.nav-link,.navbar-brand{
font-size: 15px;
color: #FFFFFF;
text-transform: capitalize;
text-decoration: none;
}
}
@media (max-width:768px){
.about h1{
font-size: 36px;
}
.text{
font-size: 18px;
}
.footer h3{
font-size: 18px;
}
}
@media (max-width:576px){
.about h1{
font-size: 28px;
}
.text{
font-size: 12px;
}
.footer h3{
font-size: 12px;
}
}