Welcome to mirror list, hosted at ThFree Co, Russian Federation.

education.css « sections « css « static - github.com/hossainemruz/toha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e095394841ef7f0413ae5c068fbf322b968b0edd (plain)
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
.education-section .education-info-table {
    width: 100%;
}

.education-section .education-info-table tr {
    padding: 0.1rem;
}

.education-section .timeframe {
    color: #8392A5;
    text-align: right;
}
.education-section .icon {
    width: 2rem;
    padding-left: 0;
    padding-right: 0;
    position: relative;
}

.education-section .icon .hline {
    position: absolute;
    left: 1rem;
    top: 0;
    background-color: #248aaa;
    height: 100%;
    width: 2px;
}

.education-section .education-info-table tr:first-child .hline {
    height: 60%;
    top: auto;
}

.education-section .education-info-table tr:last-child .hline {
    height: 50%;
}

.education-section .icon-holder {
    background-color: #248aaa;
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
    padding: 0.2rem;
    text-align: center;
    color: #e5e9f2;
    position: relative;
}

.education-section .line {
    width: 5%;
    padding-left: 0;
    padding-right: 0;
}

.education-section .line div {
    height: 2px;
    /* width: 100%; */
    margin-right: -1px;
    background-color: #248aaa;
}

.education-section .degree-info {
    padding: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border-left: 2px solid #248aaa;
    border-top: 1px solid #C0CCDA;
    border-bottom: 1px solid #C0CCDA;
    border-right: 1px solid #C0CCDA;
    border-radius: 5px;
}

.education-section .degree-info h5{
    margin-bottom: 0.3rem;
}

.education-section .taken-courses table {
    margin-left: 1rem;
    width: 100%;
    transition: all 0.3s ease-out;
}

.education-section .taken-courses .hidden-course {
    display: none;
    transition: all 1s ease-out;
}

.education-section .taken-courses ul {
    margin-bottom: 0;
}

/*============ Education Alter Template =============*/
.education-alt .degree-info{
    border-right: 2px solid #248aaa;
}


/* ============= Device specific fixes ======= */

/* Large screens such as TV */

@media only screen and (min-width: 1824px) {}

/* Extra large devices (large desktops, 1200px and up) */

@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

/* IPad Pro */

@media (max-width: 1024px) {
    .education-section .container {
        padding-left: 0;
    }
}

/*  Large devices (desktops, 992px and up) */

@media (max-width: 992px) {}

/* Medium devices (tablets, 768px and up) */

@media only screen and (max-width: 768px) {}

/* Small devices (landscape phones, 576px and up) */

@media only screen and (max-width: 576px) {
    .education-section {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .education-section .container{
        padding-right: 0;
    }
    
    .education-section .icon {
        display: none;
    }
    .education-section .line{
        display: none;
    }
    .education-section .timeframe{
        text-align: left;
    }
}

/* iPhoneX, iPhone 6,7,8 */

@media only screen and (max-width: 375px) {}

/* Galaxy S5, Moto G4 */

@media only screen and (max-width: 360px) {}

/* iPhone 5 or before */

@media only screen and (max-width: 320px) {}