-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (103 loc) · 2.04 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
header{
border: 2px solid goldenrod;
background-image: linear-gradient(to left,rgb(255, 80, 80),rgb(255, 107, 97));
}
ul{
display: flex;
justify-content: right;
align-items: right;
padding-bottom: 3vh;
}
li{
display: inline-block;
padding: 0 3em;
font-family: 'Rajdhani', sans-serif;
}
li a{
text-decoration: none;
color: White;
border: 2px solid goldenrod;
background-color: goldenrod;
border-radius: 6px;
}
.logo{
display: flex;
justify-content: left;
align-items: left;
padding-top:3vh;
padding-left: 2vh;
font-family: 'Rajdhani', sans-serif;
font-size: 1.5rem;
}
.logo a{
text-decoration: none;
color: black;
}
@media screen and (max-width:500px) {
.logo{
justify-content: center;
align-items: center;
padding-bottom: 3.5vh;
}
}
.home{
background-image: radial-gradient(rgb(255, 80, 80),rgb(255, 107, 97));
display: flex;
align-items:center ;
justify-content: center;
}
div img{
opacity: 0.3;
}
.about{
background-image: radial-gradient(rgb(255, 80, 80),rgb(255, 107, 97));
height:80vh;
display: inline-block;
justify-content: center;
align-items: center;
padding: 0 4vh;
font-family: 'Rajdhani', sans-serif;
font-size: 2em;
}
.box{
background-color: rgba(255, 255, 255, 0.171);
/* opacity: 0.6; */
height: 30vh;
color: black;
font-size: 18px;
}
.box p{
padding: 0 3vh;
}
button{
background-color: goldenrod;
border: 5px solid goldenrod ;
height: 5vh;
border-radius: 5px;
}
button a{
text-decoration: none;
color: white;
}
button:hover{
height: 6vh;
}
.contact{
background-image: radial-gradient(rgb(255, 80, 80),rgb(255, 107, 97));
}
footer{
background-color: rgba(0, 0, 0, 0.849);
color: rgb(255, 163, 163);
height: 25vh;
border-top: goldenrod 2px solid;
padding: 0 11vh;
}
footer p a{
color: rgb(166, 31, 255);
text-decoration: none;
}