-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
109 lines (93 loc) · 1.5 KB
/
main.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
html,body{
padding: 0px;
margin: 0px;
width: 100%;
height: 100%;
overflow-x: hidden;
background-color: grey;
color: white;
text-align: center;
font-family: Roboto, open-sans;
}
#mainWelcome{
margin-bottom: 0px;
}
nav{
position: fixed;
top: 0;
left: 0;
width: 100%;
text-align: center;
background-color: #1b5e20;
}
nav li{
display: inline-block;
width: 20%;
padding: 1%;
font-size: 20px;
color: white;
}
nav a{
text-decoration: none;
}
nav li:hover{
color: black;
}
#welcome-section{
min-height: 55vh;
padding-top: 45vh;
background-color: #1b5e20; /*#7cff92;*/
width: 100%;
}
.majorSection{
min-height: 100vh;
padding-top: 75px;
padding-bottom: 75px;
margin-top: -15px;
width: 100%;
}
#about{
background-color: #4c8c4a;
width: 100%;
}
#aboutTileContainer{
display: grid;
grid: 1fr/repeat(auto-fit, minmax(1vw, 1fr));
grid-gap: 40px;
margin: 0px 15px 0px 15px;
height: 20vw;
}
.about-tile{
background-color: #40c4ff;
color: black;
border-radius: 5%;
}
#projects{
background-color: #003300;
}
#projects a{
text-decoration: none;
}
.project-tile{
background-color: #0094cc;
height: 500px;
width: 500px;
padding: 10px;
margin: 20px auto 20px auto;
border-radius: 5%;
}
.project-tile h2{
text-decoration: none;
color: black;
}
#contact{
background-color: #1b5e20;
}
.contactTile{
background-color: #40c4ff;
height: 500px;
width: 500px;
line-height: 500px;
margin: 20px auto 20px auto;
border-radius: 50%;
}