-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
95 lines (74 loc) · 1.33 KB
/
index.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
/* Elemets*/
body {
background-image: url('words.jpeg');
background-repeat: repeat;
background-attachment: fixed;
background-position: center;
background-color: rgb(21, 29, 77);
}
/* IDs */
#mainTitle {
text-align: right;
color: white;
text-shadow: 2px 3px 3px black;
padding: 0 0 15px 0;
}
#mainSubTitle {
text-align: left;
text-shadow: 1px 1px 2px white;
font-style: oblique;
}
#ajaxButton {
cursor: pointer;
}
#wrongWord {
color: rgb(255, 80, 80);
}
#word {
font-size: 45px;
}
#source, #source2 {
color: rgb(181, 181, 181);
text-shadow: 1px 1px 2px black;
}
#relatedWords {
font-size: 30px;
}
#partOfSpeech, #typeOfRelation {
font-size: 40px;
color: rgb(147, 147, 147);
text-shadow: 1px 1px 1px black;
text-align: left;
}
#typeOfRelation {
padding-left: 20px;
}
#input {
padding-bottom: 40px;
}
#nameLink {
color: white;
}
/* Classes */
.jumbotron {
background-color: rgba(91, 90, 126, .0);
}
.green {
color: rgb(169, 255, 139);
}
.footer {
text-align: right;
padding: 100px 20px 20px 20px;
color: white;
text-shadow: 1px 1px 1px black;
}
.synLink {
display: inline-block;
margin-left: 10px;
text-shadow: 2px 2px 2px black;
cursor: pointer;
color: white;
}
.synLink:hover {
color: green;
}