-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojects.css
95 lines (80 loc) · 1.41 KB
/
projects.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
*{
margin: 0;
padding: 0;
font-family: 'Oswald', sans-serif;
user-select: none;
}
body{
height: 100vh;
background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(img_background.jpg);
background-position: center;
background-size: cover;
position: relative;
}
.titlebar{
width: 100%;
position: relative;
}
.logo{
text-decoration: none;
border: 1px solid #fff;
border-radius: 5px;
padding: 0.2%;
color: #fff;
font-size: 18px;
}
nav{
display: flex;
padding-top: 1%;
padding-left: 2%;
justify-content: space-between;
align-items: center;
}
.body{
position: absolute;
top: 50%;
left: 50%;
color: #fff;
transform: translate(-50%, -50%);
text-align: center;
}
.heading{
font-size: 75px;
}
hr{
margin: auto;
width: 45%;
}
.content{
font-size: 25px;
}
.content a{
color: #fff;
text-decoration: none;
}
.bottom{
color: #fff;
position: absolute;
left: 15px;
bottom: 15px;
}
.hiddengate{
color: #fff;
text-decoration: none;
}
@media(max-width: 700px){
.body{
padding-top: 0px;
}
.heading{
font-size: 40px;
}
.content{
font-size: 18px;
}
.bottom{
width: 90%;
left: 5px;
font-size: 15px;
}
}