-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (95 loc) · 1.53 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
@import url('https://fonts.googleapis.com/css2?family=Gugi&display=swap');
*{
padding:0;
margin:0;
box-sizing:border-box;
}
body{
background: #121212;
justify-content:center;
align-content:center;
align-items:center;
text-align:center;
color:white;
}
img{
width:4rem;
}
.top{
border: solid .5rem #FEE715FF;
background:linear-gradient(#101820FF,#FEE715FF);
background:linear-gradient(to left,#000000,#0f900f);
display: flex;
align-items: center;
justify-content: space-around;
font-family: 'Almarai', sans-serif;
color:white;
}
nav{
background: rgba(255,255,255,.1);
}
nav ul{
display: flex;
justify-content: space-around;
list-style: none;
}
nav ul li a i{
margin: .5rem;
font-size: 2rem;
color:#0165E1;
}
.cards{
font-family: 'Tajawal', sans-serif;
margin: 2rem auto;
}
.card {
border-radius: 10px;
background-color: rgba(255,255,255,.9);
transition: 0.7s ease;
color:black;
margin: 20px auto;
padding:10px;
width: 80%;
}
.cards .title{
padding-top:20px;
}
.card:hover {
transform: scale(1.1);
}
.icon {
color: #021aee;
font-size: 2rem;
text-align: center;
}
.info {
text-align: center;
}
.info h3 {
color: #3a6cf4;
font-size: 1.5rem;
font-weight: 700;
margin: 10px;
}
.cards .card .info p{
font-size: 1.3rem;
}
.contact .icon {
font-size: 2.5rem;
}
.contact .info h3 {
color: #3a6cf4;
font-size: 1.2rem;
font-weight: 700;
margin: 10px;
}
.contact .info p {
font-family: 'Gugi', cursive;
font-size: 1.3em;
}
footer{
margin: 3rem 0 0 0;
}
footer div h3{
letter-spacing: 1px;
}