-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
117 lines (106 loc) · 1.79 KB
/
styles.css
File metadata and controls
117 lines (106 loc) · 1.79 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
/********** Base styles **********/
* {
box-sizing: border-box;
}
h1 {
margin-bottom: 15px;
text-align: center;
color: black;
font-size: 40px;
}
p {
position: relative;
clear: right;
}
section {
position: relative;
padding: 15px;
width: 90%;
}
div {
position: relative;
background-color: gray;
border: 2.5px solid black;
width: 100%;
margin-left: auto;
margin-right: auto;
margin-bottom: auto;
}
#s1 {
background-color: green;
float: right;
width: 100px;
padding: 5px;
margin: -3px -3px 0px;
border: 2.5px solid black;
text-align: center;
font-size: 125%;
font-weight: bold;
}
#s2 {
background-color: red;
float: right;
color: white;
width: 100px;
padding: 5px;
margin: -3px -3px 0px;
border: 2.5px solid black;
text-align: center;
font-size: 125%;
font-weight: bold;
}
#s3 {
background-color: yellow;
color: black;
float: right;
width: 100px;
padding: 5px;
margin: -3px -3px 0px;
border: 2.5px solid black;
text-align: center;
font-size: 125%;
font-weight: bold;
}
.content {
padding: 5px;
border: none;
background-color: gray;
font-family: Helvetica;
color: black;
margin: 3px ;
height: 150px;
overflow: auto;
}
.row {
width: 100%;
}
/********** Large devices only **********/
@media (min-width: 992px) {
.col-lg-4 {
float: left;
border: 1px black;
width: 33.33%;
}
}
/********** Medium devices only **********/
@media (min-width: 768px) and (max-width: 991px) {
.col-md-6 {
float: left;
width: 50%;
margin-left: auto;
margin-right: auto;
}
.col-md-12 {
float: left;
width: 100%;
margin-left: auto;
margin-right: auto;
}
}
/********** Small devices only **********/
@media (max-width: 767px) {
.col-sm-12 {
float: left;
width: 100%;
}
}