blob: ef75493641dbf9c70a5e14cd1afbc730cead78ea (
plain)
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
|
#projects {
display: flex;
flex-direction: column;
justify-content: space-between;
width: 90%;
max-width: 960px;
margin: 0 auto;
@media only screen and (min-width: $cut) {
width: 80%;
}
}
.user-projects {
margin: 20px auto;
img {
max-width: 100%;
height: auto;
border-radius: 5px;
}
h5 {
margin: 0;
}
li {
color: $main;
font-size: 1.1rem;
}
p {
margin-right: 5px;
}
}
.contents {
@media only screen and (min-width: $cut) {
margin-left: 0;
width: 48%;
}
}
.contents-right {
@media only screen and (min-width: $cut) {
float: right;
margin-top: -5%;
width: 48%;
}
}
.images-right {
@media only screen and (min-width: $cut) {
float: right;
width: 48%;
}
img {
@media only screen and (min-width: $cut) {
float: right;
}
}
}
.images-left {
@media only screen and (min-width: $cut) {
float: left;
width: 48%;
}
img {
@media only screen and (min-width: $cut) {
float: left;
}
}
}
.project-link {
display: inline-block;
margin: 10px 0px;
padding: 5px;
color: $main;
background-color: transparent;
border: 1px solid $main;
border-radius: 10px;
text-align: center;
outline: none;
text-decoration: none;
cursor: pointer;
transition: color 0.3s ease-out,
background-color 0.3s ease-out,
border-color 0.3s ease-out;
&:hover {
background-color: $purple;
border-color: $purple;
color: #fff;
transition: color 0.3s ease-in,
background-color 0.3s ease-in,
border-color 0.3s ease-in;
}
&:active {
background-color: $purple;
border-color: $purple;
color: #fff;
transition: color 0.3s ease-in,
background-color 0.3s ease-in,
border-color 0.3s ease-in;
}
}
|