-
Notifications
You must be signed in to change notification settings - Fork 0
/
homepage.css
133 lines (122 loc) · 2.98 KB
/
homepage.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*@import url('https://fonts.googleapis.com/css?family=Roboto+Mono');
@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url('https://fonts.googleapis.com/css?family=Anton');*/
body {
background-image: url('another-dimension.jpg');
margin: 0px;
overflow: hidden;
}
.container {
width: 100%;
height: 50vh; /*altezza dei contenitori dall'alto - originalmente 100*/
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
#clock {
font-family: sans-serif;
font-size: 6.5rem; /*modificato*/
font-weight: 599; /*modificato*/
font-family: "Anton";
color: #CC00CC;
text-shadow: 5px 5px 5px black;
margin-bottom: .25em;
}
#search {
width: 100%;
height: 100vh;
/*background-color: #000000;*/
background-image: url('another-dimension.jpg'); /*modificato*/
display: none;
position: absolute;
box-sizing: border-box;
flex-direction: column;
align-items: center;
justify-content: center;
}
#search-field {
width: 60%;
padding: .75em 1em;
box-sizing: border-box;
/*background-image: url('another-dimension.jpg'); modificato*/
background-color: rgba(0, 0, 0, 0.8);
border: solid 0px #000000;
/*font-family: "Roboto Mono";*/
font-family: "FantasqueSansMono Nerd Font";
font-size: 4rem;
color: #f2f2f2;
outline: none;
border-radius: 20px; /*modificato*/
margin-bottom: 1em;
text-align: center;
}
.inline {
display: inline-block;
}
.bookmark-container {
display: flex;
flex-direction: row;
justify-content: center;
overflow: visible; /*modificato*/
width: 60%; /*larghezza comlessiva dei contenitori*/
margin: 3em 0em;
border-radius: 4px;
border-color: rgb(255, 0, 0);
}
@media only screen and (max-height: 960px) {/* aggiunta mia*/
#clock {
margin-top: 2em;
}
}
@media only screen and (max-width: 960px) {
.container {
height: auto;
}
#clock {
margin-top: 1em;
}
.container > .bookmark-container {
flex-direction: column;
width: 60%;
}
.bookmark-container > .bookmark-set {
width: auto;
margin: 1em 0em;
}
}
.bookmark-set{
padding: 1em;
background-color: rgba(0, 0, 0, 0.8);
border-radius: 25px;
border-style: double;
border-color: #CC00CC;
/*font-family: "Roboto Mono";*/
font-family: "FantasqueSansMono Nerd Font";
font-size: 1rem;
width: 25%;
height: 15.5em; /*cambia qui l'altezza del contenitore*/
margin: 0em .5em;
}
.bookmark-inner-container {
overflow-y: hidden;
height: 90%; /*modificato*/
vertical-align: top;
}
.bookmark-title {
/*font-family: "Roboto";*/
font-family: "FantasqueSansMono Nerd Font Mono";
font-size: 1.5rem;
font-weight: 600;
color: #ededed;
margin: 0em 0em .35em 0em;
}
.bookmark {
text-decoration: none;
color: #8c8c8b;
display:block;
margin: .4em 0em;
}
.bookmark:hover {
color: #CC00CC;
}