-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmystyle.css
More file actions
90 lines (71 loc) · 1.25 KB
/
Copy pathmystyle.css
File metadata and controls
90 lines (71 loc) · 1.25 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
<style>
/********** Base styles **********/
* {
box-sizing: border-box;
font-family: Helvetica;
}
h1 {
margin-bottom: 15px;
text-align: center;
color: dimGray;
font-family: Helvetica;
}
body{
margin: 10px;
padding: 0px;
font-size: 20px;
}
.no {
border: 1px solid black;
padding: 0px;
background-color: white;
height: 100px;
margin: 20px 10px;
margin-top: 0;
font-family: Helvetica;
}
p {
clear: both;
padding: 10px;
line-height: 20px;
text-align: justify;
font-family: Helvetica;
font-size: 75%;
}
#titolo1, #titolo2, #titolo3{
float: right;
border: 1px solid black;
margin: -1px;
background-color: lightSalmon;
font-size: 75%;
}
#titolo2{
background-color: paleGreen
}
#titolo3{
background-color: mediumPurple
}
h2 {
padding: 0 15px;
line-height: 0;
}
/* Simple Responsive Framework. */
.row {
width: 100%;
}
/********** desktop **********/
@media (min-width: 992px) {
.col-lg-4{ float: left; width: 33.33%; }
}
/********** tablet **********/
@media (min-width: 768px) and (max-width: 991px) {
.col-md-6 {
width: 50%; float: left;
}
.col-md-12 {
width: 100%; float: left;
}
}
/********** mobile **********/
@media (min-width: 767px) {}
</style>