-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
125 lines (102 loc) · 2.29 KB
/
style.css
File metadata and controls
125 lines (102 loc) · 2.29 KB
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
120
121
122
123
124
125
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
body {
font-family: 'Roboto Mono', monospace;
}
header {
height: 40vh;
background-image: url('./images/header-background.jpg');
background-size: cover;
background-repeat: no-repeat;
}
header>.controller-layer {
height: 40vh;
background-color: rgba(128, 128, 128, 0.8);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 15px;
}
.logo-section img {
width: 250px;
}
.pulse {
animation: pulse 2s infinite;
}
.pulse:hover {
animation: none;
}
@keyframes pulse {
0% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
}
70% {
transform: scale(1);
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
}
100% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
}
.custom-input {
text-align: center;
}
.custom-input input {
width: 90%;
border: none;
border-bottom: 1px solid black;
}
.custom-input textarea {
width: 95%;
height: 200px;
}
.custom-input input:focus {
outline: none;
border-bottom: 2px solid black;
}
.tech-item {
display: inline-block;
height: 32px;
font-size: 13px;
color: rgba(0, 0, 0, 0.6);
line-height: 32px;
padding: 0 12px;
border-radius: 16px;
background-color: #e4e4e4;
margin-bottom: 5px;
margin-right: 5px;
font-family: 'Roboto', sans-serif;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.tech-item img {
padding: 5px;
}
.tech-item>img {
float: left;
margin: 0 8px 0 -12px;
height: 32px;
width: 32px;
border-radius: 50%;
}
.selected-tech {
background-color: grey;
}
#preview {
background-color: #161d27;
color: #e4e4e4;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: 300;
}
@media screen and (max-width: 992px) {
header,
header>.controller-layer {
height: 50vh;
}
}