-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle3.css
119 lines (103 loc) · 2.03 KB
/
style3.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
* {
box-sizing: border-box;
}
body {
font-family: Arial;
padding: 20px;
background: #f1f1f1;
}
/* Header/Blog Title */
.header_div {
padding:10px;
}
.header {
padding: 30px;
font-size: 60px;
text-align: center;
/*background: rgba(251, 251, 251, 0.6);*/
border-radius: 50px;
}
/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
float: left;
width: 50%;
padding: 10px;
}
/* Right column */
.rightcolumn {
float: left;
width: 50%;
padding-right: 10px;
padding: 10px;
}
/* Fake image */
.fakeimg {
background-color: #aaa;
width: 100%;
padding: 20px;
}
/* Add a card effect for articles */
.card {
border-radius: 50px;
padding: 20px;
margin-top: 20px;
background: rgba(255, 255, 255, 0.9);
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
.leftcolumn, .rightcolumn {
width: 100%;
padding: 0;
}
}
.article {
font-family:Arial;
display:inline;
}
.Project_type_title {
text-align: center;
color:rgb(0, 0, 0);
text-shadow: 0px 0px 10px white;
margin: 10px;
font-size: 3em;
}
.github_link_container{
align-items: center;
}
.github_link {
text-align: center;
}
.github_img{
background-color: black;
max-width: 5%;
height: auto;
margin: 0px;
border-radius: 40%;
}
.github_img:hover {
max-width: 10%;
border-radius: 10%;
transition: 0.5s;
}
.badge-primary {
padding: 4px;
border-radius: 0.5em;
display: inline-block;
font-size: 0.8em;
color: white;
background-color: rgb(18, 59, 207);
}
.badge-primary:hover {
font-size: 1.2em;
transition: 0.5s;
}
.badge_text {
text-align: justify;
}