-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.scss
62 lines (52 loc) · 891 Bytes
/
input.scss
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
body {
text-align: center;
background: #193549;
color: white;
font-family: 'helvetica neue', sans-serif;
font-weight: 100;
font-size: 50px;
overflow-x: hidden;
}
.title {
font-size: 2em;
}
:root {
--base:#ffc600;
--spacing:10px;
--blur:10px;
}
.javasctipt{
color: var(--base);
}
.photo{
margin: auto;
position: relative;
margin-top: 0.5em;
border: var(--spacing) solid var(--base);
filter: blur(var(--blur));
width: 70%;
}
.controls {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
@media (max-width : 768px) {
.controls {
display: flex;
flex-direction: column;
justify-content: center;
padding: 12%
}
#base {
margin: 0 auto;
}
.title {
font-size: 1em;
}
.photo{
margin-top: 0.1em;
max-width: 100%;
}
}