-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyleFramework.css
More file actions
130 lines (112 loc) · 2.75 KB
/
StyleFramework.css
File metadata and controls
130 lines (112 loc) · 2.75 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
126
127
128
129
130
.headerS1 {
background-color: rgb(100, 100, 100);
height: 100px;
box-shadow: -29px 26px 93px 14px rgba(0, 0, 0, 0.71);
display: flex;
justify-content: flex-start;
align-items: center;
}
.headerS1 a {
color: rgb(231, 230, 230);
margin-left: 15px;
margin-right: 15px;
text-decoration: none;
background-color: rgba(73, 73, 73, 0.842);
padding: 12px;
border: 2px solid rgb(138, 138, 138);
font-weight: bold;
font-size: large;
}
.headerS1 a:hover {
border: 2px solid rgb(185, 185, 185);
font-weight: bolder;
background-color: rgb(114, 114, 114);
}
body {
margin: 0;
background-color: rgb(147, 147, 147);
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.textS1 {
color: rgb(243, 243, 243);
text-align: center;
padding: 5px;
}
.textS2 {
color: rgb(0, 0, 0);
text-align: left;
margin-left: 5px;
}
.lineS1 {
background-color: rgb(150, 150, 150);
padding: 5px;
}
.lineS2 {
background-color: rgb(218, 218, 218);
padding: 5px;
}
.boxS1 {
background-color: black;
color: whitesmoke;
padding: 12px;
text-align: left;
display: flex;
justify-content: flex-start;
align-items: flex-start;
border: 3px solid rgb(150, 150, 150);
}
.boxS2 {
background-color: rgb(24, 24, 24);
color: rgb(204, 204, 204);
padding: 12px;
text-align: left;
display: flex;
justify-content: flex-start;
align-items: flex-start;
border: 20px solid rgb(160, 160, 160);
}
.boxS3 {
background-color: rgb(68, 68, 68);
color: rgb(226, 226, 226);
padding: 12px;
text-align: left;
display: flex;
margin-left: 0px;
justify-content: flex-start;
align-items: flex-start;
border: 13px double rgb(160, 160, 160);
}
.padding {
background-color: rgb(150, 150, 150);
padding: 3px;
text-align: left;
display: flex;
}
.buttonS1 {
color: rgb(231, 230, 230);
margin-left: 15px;
margin-right: 15px;
text-decoration: none;
background-color: rgba(116, 116, 116, 0.842);
padding: 12px;
border: 2px solid rgb(117, 117, 117);
font-weight: bold;
font-size: large;
}
.buttonS1:hover {
border: 2px solid rgb(185, 185, 185);
font-weight: bolder;
background-color: rgb(114, 114, 114);
}
.fontS1 {
font-family: 'Courier New', Courier, monospace;
}
.fontS2 {
font-family: Verdana, Geneva, Tahoma, sans-serif
}
.fontS3 {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif, Courier, monospace;
}
.fontS4 {
font-family: 'Times New Roman', Times, serif
}