-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
118 lines (88 loc) · 2.17 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
.tabs {
text-align: center;
margin: auto;
}
.tabs-list {
color: white;
}
.tabs ul li {
background: black;
color: white;
display: inline-block;
list-style-type: none;
padding: 10px;
}
.tabs ul li a {
color: white;
}
.tabs ul li:hover {
background: rgb(82, 56, 129);
}
.header {
margin: auto;
text-align: center;
}
ul {
text-align: left;
list-style-position: inside;
font-family: 'Source Sans Pro', sans-serif;
}
p {
font-family: 'Source Sans Pro', sans-serif;
font-size: 20px;
padding-left: 20px;
padding-top: 5px;
padding-bottom: 5px;
text-align: left;
width: fit-content;
}
#section > img {
align-self: flex-end;
flex-grow: 1;
}
.highlight-blue {
font-family: 'Montserrat', sans-serif;
font-size: 60px;
padding-left: 20px;
padding-top: 5px;
padding-bottom: 5px;
}
.section {
background-color:rgb(255, 255, 255);
border-style: solid;
border-width: 2px;
border-color:rgb(82, 56, 129);
margin: auto;
margin-top: 40px;
margin-bottom: 40px;
padding: 40px;
display: flex;
flex-direction: column;
align-content: space-around;
/*display: flex;
flex-direction: column;*/
width: 800px;
height: fit-content;
}
.contactform {
margin: auto;
text-align: center;
}
.projects-grid {
display: flex;
justify-content: space-evenly;
padding: 20px;
}
body {
background:
radial-gradient(rgb(82, 56, 129) 3px, transparent 4px),
radial-gradient(rgb(82, 56, 129) 3px, transparent 4px),
linear-gradient(#fff 4px, transparent 0),
linear-gradient(45deg, transparent 74px, transparent 75px, #a4a4a4 75px, #a4a4a4 76px, transparent 77px, transparent 109px),
linear-gradient(-45deg, transparent 75px, transparent 76px, #a4a4a4 76px, #a4a4a4 77px, transparent 78px, transparent 109px),
#fff;
background-size: 109px 109px, 109px 109px,100% 6px, 109px 109px, 109px 109px;
background-position: 54px 55px, 0px 0px, 0px 0px, 0px 0px, 0px 0px;
}